mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 05:02:21 +00:00
22 lines
428 B
PHP
22 lines
428 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class UpdateThemeRequest extends FormRequest
|
|
{
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'theme_preference' => ['sometimes', 'in:light,dark,system'],
|
|
'color_scheme' => ['sometimes', 'in:blue,emerald,violet'],
|
|
];
|
|
}
|
|
}
|