mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 05:01:05 +08:00
8 lines
244 B
Ruby
8 lines
244 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserFullNameValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
record.errors.add(attribute, :blank) if SiteSetting.full_name_required && !record.name.present?
|
|
end
|
|
end
|