Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# 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?
def error_message
I18n.t('site_settings.errors.discourse_connect_invite_only')