FEATURE: increasing name length in automation (#28945)

Updates from 30 to 100 the maximum length of the name of an automation.

Adds tests for validating the maximum length of the name of an automation.
This commit is contained in:
Gabriel Grubba
2024-09-17 13:16:44 -03:00
committed by GitHub
parent 140d9aadfe
commit e926a07c83
2 changed files with 16 additions and 1 deletions

View File

@ -31,7 +31,7 @@ module DiscourseAutomation
end
MIN_NAME_LENGTH = 5
MAX_NAME_LENGTH = 30
MAX_NAME_LENGTH = 100
validates :name, length: { in: MIN_NAME_LENGTH..MAX_NAME_LENGTH }
def add_id_to_custom_field(target, custom_field_key)