Skip to content

Commit

Permalink
Fixed auth.php
Browse files Browse the repository at this point in the history
  • Loading branch information
SensvanAert committed Oct 26, 2023
1 parent b13d131 commit 5637b29
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Binary file added code/webapp.zip
Binary file not shown.
12 changes: 7 additions & 5 deletions code/webapp/routes/auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,13 @@
"verification.notice"
);

Route::get('/email/verify/{id}/{hash}', function (EmailVerificationRequest $request) {
$request->fulfill();

return redirect('/');
})->middleware(['auth', 'signed'])->name('verification.verify');


Route::get('/email/verify/{id}/{hash}', function (EmailVerificationRequest $request) {
$request->fulfill();

return redirect('/');
})->middleware(['auth', 'signed'])->name('verification.verify');

Route::post("email/verification-notification", [
EmailVerificationNotificationController::class,
Expand Down

0 comments on commit 5637b29

Please sign in to comment.