mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-23 11:27:24 +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";
|
|
}
|