mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-06-24 08:17:31 +08:00
12 lines
234 B
PHP
12 lines
234 B
PHP
<?php
|
|
|
|
namespace App\Enums\Permission;
|
|
|
|
enum PermissionEnum: string {
|
|
case UPLOAD_TO_SPECIAL_SECTION = 'uploadspecial';
|
|
case BE_ANONYMOUS = 'beanonymous';
|
|
|
|
case TORRENT_LIST = 'torrent:list';
|
|
case UPLOAD = 'upload';
|
|
}
|