mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 18:04:46 +02:00
31 lines
820 B
PHP
31 lines
820 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Client\Servers\Settings;
|
|
|
|
use App\Contracts\Http\ClientPermissionsRequest;
|
|
use App\Http\Requests\Api\Client\ClientApiRequest;
|
|
use App\Models\Permission;
|
|
|
|
class DescriptionServerRequest extends ClientApiRequest implements 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
|
|
{
|
|
return Permission::ACTION_SETTINGS_DESCRIPTION;
|
|
}
|
|
|
|
/**
|
|
* The rules to apply when validating this request.
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'description' => 'string|nullable',
|
|
];
|
|
}
|
|
}
|