From cb798bef3675f3b1e4fe03cc3542eea55c8c2513 Mon Sep 17 00:00:00 2001 From: Stephan Date: Mon, 6 Mar 2023 10:37:21 +0100 Subject: [PATCH] Field types: update new options for CSVListField and NetworkField --- source/development/frontend/models_fieldtypes.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/development/frontend/models_fieldtypes.rst b/source/development/frontend/models_fieldtypes.rst index db4f7822..05bd0991 100644 --- a/source/development/frontend/models_fieldtypes.rst +++ b/source/development/frontend/models_fieldtypes.rst @@ -136,6 +136,7 @@ List of (comma) separated values, which can be validated using a regex. "Required", "Y,N", "Mark field as required" "ValidationMessage", ":code:`text`", "Error message on validation failure" "Mask", ":code:`regex`", "Optional validation regex" + "MaskPerItem", "Y,N", "Apply regex validation to each item separately" ConfigdActionsField @@ -398,6 +399,7 @@ Validate if the value is a valid network address (IPv4, IPv6). "FieldSeparator", ":code:`text`", "Separator character to use" "WildcardEnabled", "Y,N", "Allow the use of the :code:`any` clause" "AsList", "Y,N", "Field type should return list items" + "Strict", "Y,N", "Disallow the usage of host bits when a netmask is used" NumericField ------------------------------------