Просмотр исходного кода

Update the expected rule template for the rule validator

Krish Mamtora 1 год назад
Родитель
Сommit
a60996e666
1 измененных файлов с 1 добавлено и 1 удалено
  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")