2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-08-18 18:18:09 +08:00
discourse/lib/validators/enable_discourse_id_validator.rb
Penar Musaraj ecb4ece065
DEV: Add validator for enable_discourse_id setting (#33710)
Still an internal beta feature, but without an id and a secret, the
authenticator shouldn't be enabled.
2025-07-21 08:18:36 -04:00

23 lines
481 B
Ruby

# frozen_string_literal: true
class EnableDiscourseIdValidator
def initialize(opts = {})
@opts = opts
end
def valid_value?(val)
return true if val == "f"
return false if credentials_missing?
true
end
def error_message
I18n.t("site_settings.errors.discourse_id_credentials") if credentials_missing?
end
private
def credentials_missing?
SiteSetting.discourse_id_client_id.blank? || SiteSetting.discourse_id_client_secret.blank?
end
end