mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-15 21:03:45 +02:00
Replace all instances of 255 as a max length with 191; ref #2421
This commit is contained in:
@@ -20,7 +20,7 @@ class StoreSubuserRequest extends SubuserRequest
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'email' => 'required|email',
|
||||
'email' => 'required|email|between:1,191',
|
||||
'permissions' => 'required|array',
|
||||
'permissions.*' => 'string',
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user