BloomFeed Addons v0.22

This commit is contained in:
Esteban
2026-07-04 20:22:16 +02:00
parent c4d1308497
commit d58f2195f5
22 changed files with 832 additions and 7 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace App\Policies;
use App\Models\Notifier;
use App\Models\User;
class NotifierPolicy
{
public function update(User $user, Notifier $notifier): bool
{
return $user->id === $notifier->user_id;
}
public function delete(User $user, Notifier $notifier): bool
{
return $user->id === $notifier->user_id;
}
}