Files
nexusphp/app/Enums/Permission/RoutePermissionEnum.php
T

11 lines
235 B
PHP
Raw Normal View History

2025-04-17 18:59:03 +07:00
<?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";
}