Skip to content

Commit

Permalink
Update api.php
Browse files Browse the repository at this point in the history
  • Loading branch information
curtisdelicata authored Oct 19, 2023
1 parent 8839eac commit 63525c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions routes/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,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 Expand Up @@ -44,4 +44,4 @@
Route::post('register', [RegisterController::class, 'create']);
// Route::get('get-subscription-plan', [RegisterController::class, 'getSubscriptionPlan']);
// Route::post('verify', [RegisterController::class, 'verify_user']);
});
});

0 comments on commit 63525c4

Please sign in to comment.