mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 19:33:38 +08:00
23 lines
468 B
Ruby
23 lines
468 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ProblemCheck::TwitterConfig < ProblemCheck
|
||
|
self.priority = "low"
|
||
|
|
||
|
def call
|
||
|
return no_problem if !SiteSetting.enable_twitter_logins
|
||
|
return no_problem if twitter_credentials_present?
|
||
|
|
||
|
problem
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def translation_key
|
||
|
"dashboard.twitter_config_warning"
|
||
|
end
|
||
|
|
||
|
def twitter_credentials_present?
|
||
|
SiteSetting.twitter_consumer_key.present? && SiteSetting.twitter_consumer_secret.present?
|
||
|
end
|
||
|
end
|