Better error messaging when server is suspended

This commit is contained in:
Dane Everitt 2020-06-22 20:22:52 -07:00
parent 693b9eab0c
commit 16e14621c8
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -65,7 +65,7 @@ class AuthenticateServerAccess
}
if ($server->suspended) {
throw new AccessDeniedHttpException('Cannot access a server that is marked as being suspended.');
throw new AccessDeniedHttpException('This server is currenty suspended and the functionality requested is unavailable.');
}
if (! $server->isInstalled()) {