diff --git a/app/Support/Services/Shutdown.php b/app/Support/Services/Shutdown.php index 3519abf..546a2a6 100644 --- a/app/Support/Services/Shutdown.php +++ b/app/Support/Services/Shutdown.php @@ -73,7 +73,7 @@ public function getEndsAt() public function getFromInSeconds() { /// Default -> 21:30 - return config('auth.shutdown.from', 1290) * 60; + return config('auth.shutdown.from', 1380) * 60; } public function getToInSeconds() @@ -137,4 +137,4 @@ public function broadcastEnd() event(new ShutdownEnded()); } -} \ No newline at end of file +} diff --git a/config/auth.php b/config/auth.php index d050ad9..50565b4 100644 --- a/config/auth.php +++ b/config/auth.php @@ -109,8 +109,8 @@ */ 'shutdown' => [ - 'to' => env('SHUTDOWN_TO', 390), // 21:30 - 'from' => env('SHUTDOWN_FROM', 1290), // 6:30 + 'to' => env('SHUTDOWN_TO', 390), // 6:30 + 'from' => env('SHUTDOWN_FROM', 1380), // 23:00 'permissions' => [ 'api.forum.*', ],