Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Contracts/Http/ClientPermissionsRequest.php
10283 views
1
<?php
2
3
namespace Pterodactyl\Contracts\Http;
4
5
interface ClientPermissionsRequest
6
{
7
/**
8
* Returns the permissions string indicating which permission should be used to
9
* validate that the authenticated user has permission to perform this action against
10
* the given resource (server).
11
*/
12
public function permission(): string;
13
}
14
15