diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index 35a1ae25..4dc9fd68 100755 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -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'); } /** diff --git a/config/app.php b/config/app.php index b361056d..5fd3b816 100755 --- a/config/app.php +++ b/config/app.php @@ -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