mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
14 lines
228 B
PHP
14 lines
228 B
PHP
<?php
|
|
|
|
namespace App\Auth;
|
|
|
|
use App\Enums\PermissionEnum;
|
|
|
|
class Permission
|
|
{
|
|
public static function canUploadToSpecialSection(): bool
|
|
{
|
|
return user_can(PermissionEnum::UPLOAD_TO_SPECIAL_SECTION->value);
|
|
}
|
|
}
|