From 959c9af068456468b71f47e2cd84e5910c34fc64 Mon Sep 17 00:00:00 2001 From: zoomiti Date: Mon, 17 Oct 2022 23:57:37 -0400 Subject: [PATCH] Removes unnecessary restrictions on username and password for Yarr egg --- software/yarr/egg-yarr.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/software/yarr/egg-yarr.json b/software/yarr/egg-yarr.json index 2a3d7083..39141576 100644 --- a/software/yarr/egg-yarr.json +++ b/software/yarr/egg-yarr.json @@ -35,7 +35,7 @@ "default_value": "username", "user_viewable": false, "user_editable": true, - "rules": "required|string|max:20|alpha_dash", + "rules": "required|string|alpha_dash", "field_type": "text" }, { @@ -45,7 +45,7 @@ "default_value": "password", "user_viewable": false, "user_editable": true, - "rules": "required|string|max:20|alpha_dash", + "rules": "required|string|alpha_dash", "field_type": "text" } ]