From aa9583fdccd9fb8b3816e69de41750df76bcf6db Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Thu, 22 Oct 2020 20:26:19 +0200 Subject: [PATCH] add base64 fieldtype for https://github.com/opnsense/core/issues/4398 --- source/development/frontend/models_fieldtypes.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/development/frontend/models_fieldtypes.rst b/source/development/frontend/models_fieldtypes.rst index 3618e558..65748d11 100644 --- a/source/development/frontend/models_fieldtypes.rst +++ b/source/development/frontend/models_fieldtypes.rst @@ -44,6 +44,12 @@ AutoNumberField An integer sequence, which automatically increments on every new item of the same type in the same level. + +Base64Field +------------------------------------ +Validate if a given string contains a valid base64 decodable value. + + BooleanField ------------------------------------