From cf14306c2b3f82a81f8d56669a71633b4d4b5fce Mon Sep 17 00:00:00 2001 From: marvin-borner@live.com Date: Mon, 16 Apr 2018 21:09:05 +0200 Subject: Main merge to user management system - files are now at /main/public/ --- .../admin/schema/requests/group/create.yaml | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 main/app/sprinkles/admin/schema/requests/group/create.yaml (limited to 'main/app/sprinkles/admin/schema/requests/group/create.yaml') diff --git a/main/app/sprinkles/admin/schema/requests/group/create.yaml b/main/app/sprinkles/admin/schema/requests/group/create.yaml new file mode 100755 index 0000000..8f5261c --- /dev/null +++ b/main/app/sprinkles/admin/schema/requests/group/create.yaml @@ -0,0 +1,35 @@ +--- +name: + validators: + required: + label: "&NAME" + message: VALIDATE.REQUIRED + length: + label: "&NAME" + min: 1 + max: 255 + message: VALIDATE.LENGTH_RANGE + transformations: + - trim +slug: + validators: + required: + label: "&SLUG" + message: VALIDATE.REQUIRED + length: + label: "&SLUG" + min: 1 + max: 255 + message: VALIDATE.LENGTH_RANGE + transformations: + - trim +icon: + validators: + length: + label: "&ICON" + min: 1 + max: 100 + message: VALIDATE.LENGTH_RANGE + required: + message: VALIDATE.REQUIRED +description: -- cgit v1.2.3