14 lines
353 B
PHP
14 lines
353 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).
|
||
|
*/
|
||
|
public function permission(): string;
|
||
|
}
|