mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-05-15 20:47:33 +08:00
11 lines
235 B
PHP
11 lines
235 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Enums\Permission;
|
||
|
|
|
||
|
|
enum RoutePermissionEnum: string {
|
||
|
|
case TORRENT_LIST = 'torrent:list';
|
||
|
|
case TORRENT_VIEW = 'torrent:view';
|
||
|
|
case TORRENT_UPLOAD = 'torrent:upload';
|
||
|
|
case USER_VIEW = "user:view";
|
||
|
|
}
|