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;