Browse Source

Update the expected rule template for the rule validator

Krish Mamtora 1 year ago
parent
commit
a60996e666
1 changed files with 1 additions and 1 deletions
  1. 1 1
      internal/validator/user.go

+ 1 - 1
internal/validator/user.go

@@ -212,7 +212,7 @@ func validateMediaPlaybackRate(mediaPlaybackRate float64) *locale.LocalizedError
 }
 
 func isValidFilterRules(filterEntryRules string, filterType string) *locale.LocalizedError {
-	// Valid Format: FieldName(RegEx)~FieldName(RegEx)~...
+	// Valid Format: FieldName=RegEx\nFieldName=RegEx...
 	fieldNames := []string{"EntryTitle", "EntryURL", "EntryCommentsURL", "EntryContent", "EntryAuthor", "EntryTag"}
 
 	rules := strings.Split(filterEntryRules, "\n")