mirror of
https://github.com/pelican-dev/panel.git
synced 2025-12-17 01:01:19 +01:00
26 lines
580 B
PHP
26 lines
580 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Client\Servers\Startup;
|
|
|
|
use App\Enums\SubuserPermission;
|
|
use App\Http\Requests\Api\Client\ClientApiRequest;
|
|
|
|
class UpdateStartupVariableRequest extends ClientApiRequest
|
|
{
|
|
public function permission(): SubuserPermission
|
|
{
|
|
return SubuserPermission::StartupUpdate;
|
|
}
|
|
|
|
/**
|
|
* The actual validation of the variable's value will happen inside the controller.
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'key' => 'required|string',
|
|
'value' => 'present',
|
|
];
|
|
}
|
|
}
|