Add separate redirect config after registration
This commit is contained in:
@@ -46,7 +46,7 @@ class RegisterController extends Controller
|
|||||||
$this->userService = $userService;
|
$this->userService = $userService;
|
||||||
$this->middleware('guest');
|
$this->middleware('guest');
|
||||||
|
|
||||||
$this->redirectTo = config('app.login_redirect');
|
$this->redirectTo = config('app.registration_redirect');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ return [
|
|||||||
|
|
||||||
# Where to redirect after logging in/registration
|
# Where to redirect after logging in/registration
|
||||||
'login_redirect' => '/dashboard',
|
'login_redirect' => '/dashboard',
|
||||||
|
'registration_redirect' => '/profile',
|
||||||
|
|
||||||
# This sends install and vaCentral specific information to help with
|
# This sends install and vaCentral specific information to help with
|
||||||
# optimizations and figuring out where slowdowns might be happening
|
# optimizations and figuring out where slowdowns might be happening
|
||||||
|
|||||||
Reference in New Issue
Block a user