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

31 lines
615 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\Server;
class SendCommandRequest extends GetServerRequest
{
/**
* Determine if the API user has permission to perform this action.
*
* @return bool
*/
public function authorize(): bool
{
return $this->user()->can('send-command', $this->getModel(Server::class));
}
/**
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
];
}
}