Commit 33c924ca authored by Viral Solani's avatar Viral Solani

misc changes

parent 1add9e36
...@@ -99,7 +99,7 @@ return [ ...@@ -99,7 +99,7 @@ return [
/* /*
* Whether or not the user has to confirm their email when signing up * Whether or not the user has to confirm their email when signing up
*/ */
'confirm_email' => true, 'confirm_email' => false,
/* /*
* Whether or not the users email can be changed on the edit profile screen * Whether or not the users email can be changed on the edit profile screen
......
...@@ -31,8 +31,8 @@ Route::group(['namespace' => 'Api\V1', 'prefix' => 'v1', 'as' => 'v1.'], functio ...@@ -31,8 +31,8 @@ Route::group(['namespace' => 'Api\V1', 'prefix' => 'v1', 'as' => 'v1.'], functio
Route::resource('users', 'UsersController', ['except' => ['create', 'edit']]); Route::resource('users', 'UsersController', ['except' => ['create', 'edit']]);
Route::post('users/delete-all', 'UsersController@deleteAll'); Route::post('users/delete-all', 'UsersController@deleteAll');
//@todo need to change the route name and related changes //@todo need to change the route name and related changes
/*Route::get('deactivatedUsers', 'DeactivatedUsersController@index'); Route::get('deactivated-users', 'DeactivatedUsersController@index');
Route::get('deletedUsers', 'DeletedUsersController@index');*/ Route::get('deleted-users', 'DeletedUsersController@index');
// Roles // Roles
Route::resource('roles', 'RolesController', ['except' => ['create', 'edit']]); Route::resource('roles', 'RolesController', ['except' => ['create', 'edit']]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment