mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-16 12:55:32 +08:00
20 lines
458 B
Ruby
20 lines
458 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ProblemCheck::ChannelErrors < ProblemCheck
|
|
self.priority = "low"
|
|
|
|
def call
|
|
return no_problem if !SiteSetting.chat_integration_enabled
|
|
return no_problem if !channel_errors?
|
|
|
|
problem
|
|
end
|
|
|
|
private
|
|
|
|
def channel_errors?
|
|
DiscourseChatIntegration::Channel.find_each.any? do |channel|
|
|
channel.error_key.present? && DiscourseChatIntegration::Provider.is_enabled(channel.provider)
|
|
end
|
|
end
|
|
end
|