1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/validators/language_validator.rb
2023-07-28 23:12:09 +02:00

23 lines
449 B
Ruby

# frozen_string_literal: true
class LanguageValidator < ActiveModel::EachValidator
include LanguagesHelper
def validate_each(record, attribute, value)
@value = value
record.errors.add(attribute, :invalid) unless valid_locale_value?
end
private
def valid_locale_value?
if @value.nil?
true
elsif @value.is_a?(Array)
@value.all? { |x| valid_locale?(x) }
else
valid_locale?(@value)
end
end
end