feat: Permetti store e update per gli utenti

This commit is contained in:
Maicol Battistini 2023-05-12 16:00:16 +02:00
parent 3d90a4eb41
commit 3b81d58f0c
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ class UserPolicy
public function store(User $user): bool
{
return false;
return true;
}
public function storeBulk(User $user): bool
@ -33,7 +33,7 @@ class UserPolicy
public function update(User $user, User $model): bool
{
return false;
return true;
}
public function updateBulk(User $user, User $model): bool