10 lines
351 B
Ruby
10 lines
351 B
Ruby
|
# CronTimezoneValidator
|
||
|
#
|
||
|
# Custom validator for CronTimezone.
|
||
|
class CronTimezoneValidator < ActiveModel::EachValidator
|
||
|
def validate_each(record, attribute, value)
|
||
|
cron_parser = Gitlab::Ci::CronParser.new(record.cron, record.cron_timezone)
|
||
|
record.errors.add(attribute, " is invalid syntax") unless cron_parser.cron_timezone_valid?
|
||
|
end
|
||
|
end
|