mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 10:06:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			382 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			382 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\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 aganist
 | 
						|
     * the given resource (server).
 | 
						|
     *
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function permission(): string;
 | 
						|
}
 |