mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 08:26:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			381 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			381 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Http\Requests\Api\Client\Servers\Subusers;
 | |
| 
 | |
| use Pterodactyl\Models\Permission;
 | |
| 
 | |
| class GetSubuserRequest extends SubuserRequest
 | |
| {
 | |
|     /**
 | |
|      * Confirm that a user is able to view subusers for the specified server.
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function permission(): string
 | |
|     {
 | |
|         return Permission::ACTION_USER_READ;
 | |
|     }
 | |
| }
 | 
