Skip to content

Commit

Permalink
Update auth.php
Browse files Browse the repository at this point in the history
  • Loading branch information
curtisdelicata committed May 31, 2023
1 parent 875fa82 commit 432f1c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions routes/app/auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
Route::middleware('api')
->group(function () {
Route::middleware('guest')->group(function () {
Route::post('login', [LoginController::class, 'login'])
->name('login');
// Route::post('login', [LoginController::class, 'login'])
// ->name('login');
Route::post('password/email', [ForgotPasswordController::class, 'sendResetLinkEmail'])
->name('password.email');
Route::post('password/reset', [ResetPasswordController::class, 'attemptReset'])
Expand Down

0 comments on commit 432f1c8

Please sign in to comment.