mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 00:34:44 +02:00
21 lines
354 B
PHP
21 lines
354 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Remote;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class AuthenticateWebsocketDetailsRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'server_uuid' => 'required|string',
|
|
];
|
|
}
|
|
}
|