migrating tests (Application, Console and Cronjob)

This commit is contained in:
Saeed Vaziry
2024-10-08 22:15:50 +02:00
parent 974af959f1
commit 0da21f40bd
39 changed files with 254 additions and 2684 deletions

View File

@ -34,6 +34,6 @@ public function delete(User $user, Server $server): bool
public function manage(User $user, Server $server): bool
{
return $user->isAdmin() || $server->project->users->contains($user);
return ($user->isAdmin() || $server->project->users->contains($user)) && $server->isReady();
}
}