feat(onboarding): skip boarding wizard for new users
Customers land directly on the dashboard instead of the setup wizard, which shows a misleading localhost vs remote server warning that conflicts with MapleDeploy's single-VM model.
This commit is contained in:
parent
12b28be04e
commit
068460d853
1 changed files with 2 additions and 2 deletions
|
|
@ -81,7 +81,7 @@ protected static function boot()
|
|||
$team = [
|
||||
'name' => $user->name."'s Team",
|
||||
'personal_team' => true,
|
||||
'show_boarding' => true,
|
||||
'show_boarding' => false,
|
||||
];
|
||||
if ($user->id === 0) {
|
||||
$team['id'] = 0;
|
||||
|
|
@ -184,7 +184,7 @@ public function recreate_personal_team()
|
|||
$team = [
|
||||
'name' => $this->name."'s Team",
|
||||
'personal_team' => true,
|
||||
'show_boarding' => true,
|
||||
'show_boarding' => false,
|
||||
];
|
||||
if ($this->id === 0) {
|
||||
$team['id'] = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue