misc_pterodactyl-panel/app/Http/Requests/Api/Client/Servers/SendCommandRequest.php

31 lines
592 B
PHP
Raw Normal View History

2018-02-28 04:09:34 +00:00
<?php
namespace Pterodactyl\Http\Requests\Api\Client\Servers;
use Pterodactyl\Models\Permission;
2018-02-28 04:09:34 +00:00
class SendCommandRequest extends GetServerRequest
{
/**
* Determine if the API user has permission to perform this action.
*
* @return string
2018-02-28 04:09:34 +00:00
*/
public function permission(): string
2018-02-28 04:09:34 +00:00
{
return Permission::ACTION_CONTROL_CONSOLE;
2018-02-28 04:09:34 +00:00
}
/**
2018-05-13 14:50:56 +00:00
* Rules to validate this request against.
2018-02-28 04:09:34 +00:00
*
* @return array
*/
public function rules(): array
{
return [
2018-03-01 04:51:04 +00:00
'command' => 'required|string|min:1',
2018-02-28 04:09:34 +00:00
];
}
}