Fix user model

This commit is contained in:
2025-11-05 01:45:28 -08:00
parent 0a531dce16
commit b20e2258b2
3 changed files with 5 additions and 8 deletions

View File

@@ -12,11 +12,9 @@ return Application::configure(basePath: dirname(__DIR__))
health: '/up',
)
->withMiddleware(function (Middleware $middleware): void {
//
$middleware->statefulApi();
})
->withExceptions(function (Exceptions $exceptions): void {
//
})
->withMiddleware(function (Middleware $middleware): void {
$middleware->statefulApi();
})->create();
->create();