[AB-70] adding templates for command parameter validators and removed duplicated command templates from assignable role place

This commit is contained in:
Sheldan
2020-09-30 00:58:52 +02:00
parent 1e8989fe8a
commit 9734acdce6
10 changed files with 6 additions and 4 deletions

View File

@@ -0,0 +1 @@
<#assign parameters=model.validatorParams><#assign parameterName=model.parameter.name><#include "${model.validationTemplate}">

View File

@@ -0,0 +1 @@
"description": "<@safe_include "command_parameter_validation_exception"/>"

View File

@@ -1 +0,0 @@
Changes the description which is shown for the assignable role place. This change takes effect the next time the assignable place is setup the next time.

View File

@@ -0,0 +1 @@
The given text for parameter `${parameterName}` needs to be shorter than or equal to ${parameters[0].number} characters.

View File

@@ -0,0 +1 @@
The given text for parameter `${parameterName}` needs to be longer than or equal to ${parameters[0].number} characters.

View File

@@ -0,0 +1 @@
The given value for parameter `${parameterName}` needs to be less than or equal to ${parameters[0].number}.

View File

@@ -0,0 +1 @@
The given value for `${parameterName}` needs to be more than or equal to ${parameters[0].number}.