Files
discourse/lib/validators/enable_invite_only_validator.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
314 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class EnableInviteOnlyValidator
def initialize(opts = {})
@opts = opts
end
def valid_value?(val)
return true if val == 'f'
!SiteSetting.enable_discourse_connect?
end
def error_message
I18n.t('site_settings.errors.discourse_connect_invite_only')
end
end