added custom insertion id regex check

This commit is contained in:
Gani Georgiev
2022-08-11 10:29:01 +03:00
parent ff935a39a1
commit 147344546b
9 changed files with 37 additions and 4 deletions

View File

@@ -2,6 +2,11 @@
// validation and applying changes to existing DB models through the app Dao.
package forms
import "regexp"
// base ID value regex pattern
var idRegex = regexp.MustCompile(`^[^\@\#\$\&\|\.\,\'\"\\\/\s]+$`)
// InterceptorNextFunc is a interceptor handler function.
// Usually used in combination with InterceptorFunc.
type InterceptorNextFunc = func() error