fix: Tighten valiation around URLs in database fields

closes #6012
This commit is contained in:
Tom Moor
2023-10-16 19:27:20 -04:00
parent 31cb9c865f
commit 0b7253bb0c
2 changed files with 23 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ export default function NotContainsUrl(target: any, propertyName: string) {
return addAttributeOptions(target, propertyName, {
validate: {
not: {
args: /(www|file:|http:|https:)+[^\s]+[\w]/,
args: /(www\.|file:|http:|https:)[^\s]+[\w]/,
msg: "Must not contain a URL",
},
},