]> git.localhorst.tv Git - alttp.git/blobdiff - app/Policies/TournamentPolicy.php
lock tournaments
[alttp.git] / app / Policies / TournamentPolicy.php
index fd2a781e87db325e2322e517f7b1442dde0a55f8..2cc6b6ed2932dd3c1eb60d4424cfe4b322a563d0 100644 (file)
@@ -16,7 +16,7 @@ class TournamentPolicy
         * @param  \App\Models\User  $user
         * @return \Illuminate\Auth\Access\Response|bool
         */
-       public function viewAny(User $user)
+       public function viewAny(?User $user)
        {
                return true;
        }
@@ -28,7 +28,7 @@ class TournamentPolicy
         * @param  \App\Models\Tournament  $tournament
         * @return \Illuminate\Auth\Access\Response|bool
         */
-       public function view(User $user, Tournament $tournament)
+       public function view(?User $user, Tournament $tournament)
        {
                return true;
        }
@@ -101,7 +101,7 @@ class TournamentPolicy
         */
        public function addRound(User $user, Tournament $tournament)
        {
-               return $user->role === 'admin' || $user->isParticipant($tournament);
+               return $user->role === 'admin' || (!$tournament->locked && $user->isParticipant($tournament));
        }
 
        /**