mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 01:25:54 +08:00
23 lines
464 B
Ruby
23 lines
464 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ProblemCheck::FacebookConfig < ProblemCheck
|
||
|
self.priority = "low"
|
||
|
|
||
|
def call
|
||
|
return no_problem if !SiteSetting.enable_facebook_logins
|
||
|
return no_problem if facebook_credentials_present?
|
||
|
|
||
|
problem
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def translation_key
|
||
|
"dashboard.facebook_config_warning"
|
||
|
end
|
||
|
|
||
|
def facebook_credentials_present?
|
||
|
SiteSetting.facebook_app_id.present? && SiteSetting.facebook_app_secret.present?
|
||
|
end
|
||
|
end
|