mirror of
https://github.com/glitch-soc/mastodon.git
synced 2026-03-29 03:00:33 +02: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
|