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

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

24 lines
481 B
Ruby
Raw Permalink Normal View History

# 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