cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
20 lines
362 B
PHP
20 lines
362 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\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',
|
|
];
|
|
}
|
|
}
|