Skip to content

Commit 33c924c

Browse files
committed
misc changes
1 parent 1add9e3 commit 33c924c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

config/access.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
/*
100100
* Whether or not the user has to confirm their email when signing up
101101
*/
102-
'confirm_email' => true,
102+
'confirm_email' => false,
103103

104104
/*
105105
* Whether or not the users email can be changed on the edit profile screen

routes/api.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
Route::resource('users', 'UsersController', ['except' => ['create', 'edit']]);
3232
Route::post('users/delete-all', 'UsersController@deleteAll');
3333
//@todo need to change the route name and related changes
34-
/*Route::get('deactivatedUsers', 'DeactivatedUsersController@index');
35-
Route::get('deletedUsers', 'DeletedUsersController@index');*/
34+
Route::get('deactivated-users', 'DeactivatedUsersController@index');
35+
Route::get('deleted-users', 'DeletedUsersController@index');
3636

3737
// Roles
3838
Route::resource('roles', 'RolesController', ['except' => ['create', 'edit']]);

0 commit comments

Comments
 (0)