Forgot to remove Task Policy

This commit is contained in:
PovilasKorop 2024-09-15 11:36:06 +03:00
parent 8c4f61be95
commit 306bbddb85

View File

@ -1,66 +0,0 @@
<?php
namespace App\Policies;
use App\Models\Task;
use App\Models\User;
use Illuminate\Auth\Access\Response;
class TaskPolicy
{
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
//
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, Task $task): bool
{
//
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
//
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, Task $task): bool
{
//
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, Task $task): bool
{
//
}
/**
* Determine whether the user can restore the model.
*/
public function restore(User $user, Task $task): bool
{
//
}
/**
* Determine whether the user can permanently delete the model.
*/
public function forceDelete(User $user, Task $task): bool
{
//
}
}