feat(setup preprod env and mailing interceptor)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition } from './../../../wayfinder'
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition } from './../../../wayfinder'
|
||||
/**
|
||||
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::store
|
||||
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:51
|
||||
@@ -33,6 +33,28 @@ store.post = (options?: RouteQueryOptions): RouteDefinition<'post'> => ({
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::store
|
||||
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:51
|
||||
* @route '/user/confirm-password'
|
||||
*/
|
||||
const storeForm = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \Laravel\Fortify\Http\Controllers\ConfirmablePasswordController::store
|
||||
* @see vendor/laravel/fortify/src/Http/Controllers/ConfirmablePasswordController.php:51
|
||||
* @route '/user/confirm-password'
|
||||
*/
|
||||
storeForm.post = (options?: RouteQueryOptions): RouteFormDefinition<'post'> => ({
|
||||
action: store.url(options),
|
||||
method: 'post',
|
||||
})
|
||||
|
||||
store.form = storeForm
|
||||
|
||||
const confirm = {
|
||||
store: Object.assign(store, store),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user