feat(onboarding): skip boarding wizard for new users
All checks were successful
Build MapleDeploy Coolify Image / build (push) Successful in 1m12s
All checks were successful
Build MapleDeploy Coolify Image / build (push) Successful in 1m12s
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
1defde08bb
commit
fe140cceab
2 changed files with 3 additions and 3 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;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
return [
|
||||
// MapleDeploy branding: registry pointed to Forgejo, auto-update disabled by default
|
||||
'coolify' => [
|
||||
'version' => '4.0.0-beta.463.5',
|
||||
'version' => '4.0.0-beta.463.6',
|
||||
'helper_version' => '1.0.12',
|
||||
'realtime_version' => '1.0.10',
|
||||
'self_hosted' => env('SELF_HOSTED', true),
|
||||
|
|
|
|||
Loading…
Reference in a new issue