cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
22 lines
653 B
PHP
22 lines
653 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Requests\Admin\Egg;
|
|
|
|
use Pterodactyl\Http\Requests\Admin\AdminFormRequest;
|
|
|
|
class EggScriptFormRequest extends AdminFormRequest
|
|
{
|
|
/**
|
|
* Return the rules to be used when validating the data sent in the request.
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'script_install' => 'sometimes|nullable|string',
|
|
'script_is_privileged' => 'sometimes|required|boolean',
|
|
'script_entry' => 'sometimes|required|string',
|
|
'script_container' => 'sometimes|required|string',
|
|
'copy_script_from' => 'sometimes|nullable|numeric',
|
|
];
|
|
}
|
|
}
|