Add separate redirect config after registration

This commit is contained in:
Nabeel Shahzad
2018-03-16 11:42:01 -05:00
parent 428d016e26
commit d34de098e5
2 changed files with 2 additions and 1 deletions

View File

@@ -46,7 +46,7 @@ class RegisterController extends Controller
$this->userService = $userService;
$this->middleware('guest');
$this->redirectTo = config('app.login_redirect');
$this->redirectTo = config('app.registration_redirect');
}
/**

View File

@@ -19,6 +19,7 @@ return [
# Where to redirect after logging in/registration
'login_redirect' => '/dashboard',
'registration_redirect' => '/profile',
# This sends install and vaCentral specific information to help with
# optimizations and figuring out where slowdowns might be happening