mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-12 13:48:37 +02:00
16 lines
358 B
PHP
16 lines
358 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Application\Users;
|
|
|
|
class AssignUserRolesRequest extends StoreUserRequest
|
|
{
|
|
/** @return array<array-key, string|string[]> */
|
|
public function rules(?array $rules = null): array
|
|
{
|
|
return [
|
|
'roles' => 'required|array',
|
|
'roles.*' => 'integer|exists:roles,id',
|
|
];
|
|
}
|
|
}
|