mirror of
https://github.com/mastodon/mastodon.git
synced 2026-03-21 18:05:23 -05:00
14 lines
302 B
Ruby
14 lines
302 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DateOfBirthValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
record.errors.add(attribute, :below_limit) if value.present? && value.to_date > min_age.ago
|
|
end
|
|
|
|
private
|
|
|
|
def min_age
|
|
Setting.min_age.to_i.years
|
|
end
|
|
end
|