diff --git a/app/Models/User.php b/app/Models/User.php index 9cbe88835..b3fe47e63 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -93,7 +93,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; @@ -216,7 +216,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;