feat&fix(Wip home page, services and illustrations & add static pages)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition } from './../../../../../wayfinder'
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition } from './../../../../../wayfinder'
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\TwoFactorAuthenticationController::show
|
||||
* @see app/Http/Controllers/Settings/TwoFactorAuthenticationController.php:28
|
||||
@@ -43,43 +43,6 @@ show.head = (options?: RouteQueryOptions): RouteDefinition<'head'> => ({
|
||||
method: 'head',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\TwoFactorAuthenticationController::show
|
||||
* @see app/Http/Controllers/Settings/TwoFactorAuthenticationController.php:28
|
||||
* @route '/settings/two-factor'
|
||||
*/
|
||||
const showForm = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: show.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\TwoFactorAuthenticationController::show
|
||||
* @see app/Http/Controllers/Settings/TwoFactorAuthenticationController.php:28
|
||||
* @route '/settings/two-factor'
|
||||
*/
|
||||
showForm.get = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: show.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Http\Controllers\Settings\TwoFactorAuthenticationController::show
|
||||
* @see app/Http/Controllers/Settings/TwoFactorAuthenticationController.php:28
|
||||
* @route '/settings/two-factor'
|
||||
*/
|
||||
showForm.head = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: show.url({
|
||||
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
||||
_method: 'HEAD',
|
||||
...(options?.query ?? options?.mergeQuery ?? {}),
|
||||
}
|
||||
}),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
show.form = showForm
|
||||
|
||||
const TwoFactorAuthenticationController = { show }
|
||||
|
||||
export default TwoFactorAuthenticationController
|
||||
Reference in New Issue
Block a user