27 lines
849 B
Diff
27 lines
849 B
Diff
From 533b441a88602ab8ab8e047f0d5c52ab25486aed Mon Sep 17 00:00:00 2001
|
|
From: chris <cg@zknt.org>
|
|
Date: Tue, 12 Mar 2024 17:10:13 +0100
|
|
Subject: [PATCH 5/6] allow 30 char usernames
|
|
|
|
raise maximum username length, because why not?
|
|
---
|
|
app/Http/Controllers/Auth/RegisterController.php | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php
|
|
index 8bdd57bf..ed029ea6 100644
|
|
--- a/app/Http/Controllers/Auth/RegisterController.php
|
|
+++ b/app/Http/Controllers/Auth/RegisterController.php
|
|
@@ -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, '-');
|
|
--
|
|
2.44.0
|
|
|