mirror of
https://github.com/discourse/discourse-chat-integration.git
synced 2025-02-18 01:15:20 +00:00
As part of enhancing problem checks and admin notices, we standardized the location of the problem check messages' locale keys. However, we overlooked this one in the plugin, resulting in a missing translation on the dashboard. This PR puts the locale key in the place expected by the admin notice system.
22 lines
468 B
Ruby
22 lines
468 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
|