X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FPolicies%2FRoundPolicy.php;h=1e29803d24764f258b311c806c9456c98a064b57;hb=a907ef7c6676fef11f42933b2d79bdd496b20122;hp=045785d28047aed0bd5d9e177d767234e1471aea;hpb=55f2d7cd6c290a0d26db177d54d20c393f890bbb;p=alttp.git diff --git a/app/Policies/RoundPolicy.php b/app/Policies/RoundPolicy.php index 045785d..1e29803 100644 --- a/app/Policies/RoundPolicy.php +++ b/app/Policies/RoundPolicy.php @@ -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); + } }