mirror of
https://github.com/discourse/discourse.git
synced 2024-12-12 19:13:44 +08:00
18 lines
294 B
Ruby
18 lines
294 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ProblemCheck::GoogleAnalyticsVersion < ProblemCheck
|
||
|
self.priority = "low"
|
||
|
|
||
|
def call
|
||
|
return no_problem if SiteSetting.ga_version != "v3_analytics"
|
||
|
|
||
|
problem
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def translation_key
|
||
|
"dashboard.v3_analytics_deprecated"
|
||
|
end
|
||
|
end
|