Projekt-Cleanup: Alle Dateien basierend auf .gitignore neu indexiert

This commit is contained in:
2026-04-10 21:13:24 +02:00
parent daa688ca7a
commit 3f61033d14
352 changed files with 0 additions and 36208 deletions
@@ -1,71 +0,0 @@
import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition } from './../../wayfinder'
/**
* @see \App\Http\Controllers\Settings\SecurityController::update
* @see app/Http/Controllers/Settings/SecurityController.php:50
* @route '/settings/password'
*/
export const update = (options?: RouteQueryOptions): RouteDefinition<'put'> => ({
url: update.url(options),
method: 'put',
})
update.definition = {
methods: ["put"],
url: '/settings/password',
} satisfies RouteDefinition<["put"]>
/**
* @see \App\Http\Controllers\Settings\SecurityController::update
* @see app/Http/Controllers/Settings/SecurityController.php:50
* @route '/settings/password'
*/
update.url = (options?: RouteQueryOptions) => {
return update.definition.url + queryParams(options)
}
/**
* @see \App\Http\Controllers\Settings\SecurityController::update
* @see app/Http/Controllers/Settings/SecurityController.php:50
* @route '/settings/password'
*/
update.put = (options?: RouteQueryOptions): RouteDefinition<'put'> => ({
url: update.url(options),
method: 'put',
})
/**
* @see \App\Http\Controllers\Settings\SecurityController::update
* @see app/Http/Controllers/Settings/SecurityController.php:50
* @route '/settings/password'
*/
const updateForm = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
action: update.url({
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
_method: 'PUT',
...(options?.query ?? options?.mergeQuery ?? {}),
}
}),
method: 'post',
})
/**
* @see \App\Http\Controllers\Settings\SecurityController::update
* @see app/Http/Controllers/Settings/SecurityController.php:50
* @route '/settings/password'
*/
updateForm.put = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
action: update.url({
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
_method: 'PUT',
...(options?.query ?? options?.mergeQuery ?? {}),
}
}),
method: 'post',
})
update.form = updateForm
const userPassword = {
update: Object.assign(update, update),
}
export default userPassword