7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-29 13:41:07 +02:00

22 lines
397 B
PHP

<?php
namespace Pterodactyl\Http\Requests\Api\Remote;
use Illuminate\Foundation\Http\FormRequest;
class InstallationDataRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'successful' => 'present|boolean',
'reinstall' => 'sometimes|boolean',
];
}
}