mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 09:31:40 +08:00
17 lines
353 B
Ruby
17 lines
353 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SsoOverridesEmailValidator
|
|
def initialize(opts = {})
|
|
@opts = opts
|
|
end
|
|
|
|
def valid_value?(val)
|
|
return true if val == "f"
|
|
return false if SiteSetting.email_editable?
|
|
true
|
|
end
|
|
|
|
def error_message
|
|
I18n.t("site_settings.errors.email_editable_enabled") if SiteSetting.email_editable?
|
|
end
|
|
end
|