mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
17 lines
314 B
Ruby
17 lines
314 B
Ruby
# 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
|