diff --git a/app/Models/User.php b/app/Models/User.php index 4561cddb2..8172dc960 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -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; diff --git a/config/constants.php b/config/constants.php index 8905f5ce7..ce590d46f 100644 --- a/config/constants.php +++ b/config/constants.php @@ -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),