mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 11:12:09 -05:00
70 lines
1.7 KiB
PHP
70 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Category\Policies;
|
|
|
|
use Illuminate\Foundation\Auth\User as AuthUser;
|
|
use Modules\Category\Models\Category;
|
|
use Illuminate\Auth\Access\HandlesAuthorization;
|
|
|
|
class CategoryPolicy
|
|
{
|
|
use HandlesAuthorization;
|
|
|
|
public function viewAny(AuthUser $authUser): bool
|
|
{
|
|
return $authUser->can('ViewAny:Category');
|
|
}
|
|
|
|
public function view(AuthUser $authUser, Category $category): bool
|
|
{
|
|
return $authUser->can('View:Category');
|
|
}
|
|
|
|
public function create(AuthUser $authUser): bool
|
|
{
|
|
return $authUser->can('Create:Category');
|
|
}
|
|
|
|
public function update(AuthUser $authUser, Category $category): bool
|
|
{
|
|
return $authUser->can('Update:Category');
|
|
}
|
|
|
|
public function delete(AuthUser $authUser, Category $category): bool
|
|
{
|
|
return $authUser->can('Delete:Category');
|
|
}
|
|
|
|
public function restore(AuthUser $authUser, Category $category): bool
|
|
{
|
|
return $authUser->can('Restore:Category');
|
|
}
|
|
|
|
public function forceDelete(AuthUser $authUser, Category $category): bool
|
|
{
|
|
return $authUser->can('ForceDelete:Category');
|
|
}
|
|
|
|
public function forceDeleteAny(AuthUser $authUser): bool
|
|
{
|
|
return $authUser->can('ForceDeleteAny:Category');
|
|
}
|
|
|
|
public function restoreAny(AuthUser $authUser): bool
|
|
{
|
|
return $authUser->can('RestoreAny:Category');
|
|
}
|
|
|
|
public function replicate(AuthUser $authUser, Category $category): bool
|
|
{
|
|
return $authUser->can('Replicate:Category');
|
|
}
|
|
|
|
public function reorder(AuthUser $authUser): bool
|
|
{
|
|
return $authUser->can('Reorder:Category');
|
|
}
|
|
|
|
} |