Add role-based authorization for updating teams

This commit is contained in:
Andras Bacsai 2024-04-05 16:48:06 +02:00
parent c223408c3c
commit 36c31dcd67
2 changed files with 9 additions and 3 deletions

View File

@ -21,9 +21,11 @@ class Team extends Model implements SendsDiscord, SendsEmail
protected static function booted()
{
// static::saved(function () {
// refreshSession();
// });
static::saving(function ($team) {
if (auth()->user()->isMember()) {
throw new \Exception('You are not allowed to update this team.');
}
});
}
public function routeNotificationForDiscord()

View File

@ -127,6 +127,10 @@ public function isOwner()
{
return $this->role() === 'owner';
}
public function isMember()
{
return $this->role() === 'member';
}
public function isAdminFromSession()
{
if (auth()->user()->id === 0) {