Files
einundzwanzig-portal/app/Policies/LibraryPolicy.php
Benjamin Takats 52b016273d policies added
2022-12-12 19:17:09 +01:00

95 lines
2.2 KiB
PHP

<?php
namespace App\Policies;
use App\Models\Library;
use App\Models\User;
use Illuminate\Auth\Access\HandlesAuthorization;
class LibraryPolicy extends BasePolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any models.
*
* @param \App\Models\User $user
* @return \Illuminate\Auth\Access\Response|bool
*/
public function viewAny(User $user)
{
return true;
}
/**
* Determine whether the user can view the model.
*
* @param \App\Models\User $user
* @param \App\Models\Library $library
* @return \Illuminate\Auth\Access\Response|bool
*/
public function view(User $user, Library $library)
{
return true;
}
/**
* Determine whether the user can create models.
*
* @param \App\Models\User $user
* @return \Illuminate\Auth\Access\Response|bool
*/
public function create(User $user)
{
return true;
}
/**
* Determine whether the user can update the model.
*
* @param \App\Models\User $user
* @param \App\Models\Library $library
* @return \Illuminate\Auth\Access\Response|bool
*/
public function update(User $user, Library $library)
{
return false;
}
/**
* Determine whether the user can delete the model.
*
* @param \App\Models\User $user
* @param \App\Models\Library $library
* @return \Illuminate\Auth\Access\Response|bool
*/
public function delete(User $user, Library $library)
{
return false;
}
/**
* Determine whether the user can restore the model.
*
* @param \App\Models\User $user
* @param \App\Models\Library $library
* @return \Illuminate\Auth\Access\Response|bool
*/
public function restore(User $user, Library $library)
{
return false;
}
/**
* Determine whether the user can permanently delete the model.
*
* @param \App\Models\User $user
* @param \App\Models\Library $library
* @return \Illuminate\Auth\Access\Response|bool
*/
public function forceDelete(User $user, Library $library)
{
return false;
}
}