mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:32:26 +08:00
cf5174da69
The OutOfDateThemes problem check is using an old method of setting the message, by overriding #message. It should instead use #translation_keys. (By chance I noticed the same thing applies to UnreachableThemes.
34 lines
599 B
Ruby
34 lines
599 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ProblemCheck::UnreachableThemes < ProblemCheck
|
|
self.priority = "low"
|
|
|
|
def call
|
|
return no_problem if unreachable_themes.empty?
|
|
|
|
problem
|
|
end
|
|
|
|
private
|
|
|
|
def translation_data
|
|
{ themes_list: }
|
|
end
|
|
|
|
def unreachable_themes
|
|
@unreachable_themes ||= RemoteTheme.unreachable_themes
|
|
end
|
|
|
|
def themes_list
|
|
<<~HTML.squish
|
|
<ul>#{
|
|
unreachable_themes
|
|
.map do |name, id|
|
|
"<li><a href=\"/admin/customize/themes/#{id}\">#{CGI.escapeHTML(name)}</a></li>"
|
|
end
|
|
.join("\n")
|
|
}</ul>
|
|
HTML
|
|
end
|
|
end
|