]> git.localhorst.tv Git - alttp.git/blobdiff - app/Policies/RoundPolicy.php
lock rounds
[alttp.git] / app / Policies / RoundPolicy.php
index 045785d28047aed0bd5d9e177d767234e1471aea..7ea3cacb8544a31cc65e90e3fbdac9f2e40a70ef 100644 (file)
@@ -91,4 +91,16 @@ class RoundPolicy
        {
                return false;
        }
+
+       /**
+        * Determine whether the user can set the seed for this round.
+        *
+        * @param  \App\Models\User  $user
+        * @param  \App\Models\Round  $round
+        * @return \Illuminate\Auth\Access\Response|bool
+        */
+       public function setSeed(User $user, Round $round)
+       {
+               return $user->role === 'admin' || ($user->isParticipant($round->tournament) && !$round->locked);
+       }
 }