forked from mirror/pixelfed
allow 30 char usernames
raise maximum username length, because why not?
This commit is contained in:
parent
13995f0612
commit
e860abb64b
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ class RegisterController extends Controller
|
|||
$usernameRules = [
|
||||
'required',
|
||||
'min:2',
|
||||
'max:15',
|
||||
'max:30',
|
||||
'unique:users',
|
||||
function ($attribute, $value, $fail) {
|
||||
$dash = substr_count($value, '-');
|
||||
|
|
Loading…
Reference in a new issue