- npm updates
All checks were successful
CI Pipeline / japa-tests (push) Successful in 55s

- removed all controller methods from 'app/Controlles/Http/Admin/UsersControllers.ts'
- merged all authentication methods inside 'app/Controllers/Http/Auth/UserController.ts'
This commit is contained in:
Kaimbacher 2024-02-06 16:39:33 +01:00
parent 68928b5e07
commit 4efa53673f
7 changed files with 133 additions and 187 deletions

View file

@ -150,9 +150,9 @@ Route.get('/settings/user/security', 'UserController.accountInfo')
.namespace('App/Controllers/Http/Auth')
.middleware(['auth']);
Route.post('/settings/user/store', 'UsersController.accountInfoStore')
Route.post('/settings/user/store', 'UserController.accountInfoStore')
.as('account.password.store')
.namespace('App/Controllers/Http/Admin')
.namespace('App/Controllers/Http/Auth')
.middleware(['auth']);
// Route::post('change-password', 'UserController@changePasswordStore')->name('admin.account.password.store');