mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 07:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			345 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			345 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Contracts\Http;
 | |
| 
 | |
| interface ClientPermissionsRequest
 | |
| {
 | |
|     /**
 | |
|      * Returns the permissions string indicating which permission should be used to
 | |
|      * validate that the authenticated user has permission to perform this action against
 | |
|      * the given resource (server).
 | |
|      */
 | |
|     public function permission(): string;
 | |
| }
 | 
