7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-11 09:08:59 +02:00
2024-03-12 22:39:16 -04:00

22 lines
389 B
PHP

<?php
namespace App\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',
];
}
}