1
0
tinklu-it-projektas/app/Policies/ChirpPolicy.php
2023-10-29 15:40:39 +02:00

67 lines
1.3 KiB
PHP

<?php
namespace App\Policies;
use App\Models\Chirp;
use App\Models\User;
use Illuminate\Auth\Access\Response;
class ChirpPolicy
{
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return true;
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, Chirp $chirp): bool
{
return true;
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return true;
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, Chirp $chirp): bool
{
return $chirp->user()->is($user);
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, Chirp $chirp): bool
{
return $this->update($user, $chirp);
}
/**
* Determine whether the user can restore the model.
*/
public function restore(User $user, Chirp $chirp): bool
{
return false;
}
/**
* Determine whether the user can permanently delete the model.
*/
public function forceDelete(User $user, Chirp $chirp): bool
{
return false;
}
}