This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/lib/validators/user_full_name_validator.rb
2023-01-09 12:10:19 +00:00

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