Skip to content

Commit

Permalink
disable registration routes
Browse files Browse the repository at this point in the history
  • Loading branch information
robinklaassen committed Jul 6, 2024
1 parent b6bc7bd commit cfb3f4f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions routes/web.guest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
Route::get('/', 'Auth\LoginController@showLoginForm');

// New registration things
Route::get('register-member', 'RegistrationController@registerMember');
Route::post('register-member', 'RegistrationController@storeMember');
Route::get('register-participant', 'RegistrationController@registerParticipant');
Route::post('register-participant', 'RegistrationController@storeParticipant');
// Route::get('register-member', 'RegistrationController@registerMember');
// Route::post('register-member', 'RegistrationController@storeMember');
// Route::get('register-participant', 'RegistrationController@registerParticipant');
// Route::post('register-participant', 'RegistrationController@storeParticipant');

// Custom password reset
Route::get('forgot-password', 'PasswordController@forgot');
Expand Down

0 comments on commit cfb3f4f

Please sign in to comment.