mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 15:59:29 +08:00
11 lines
221 B
Ruby
11 lines
221 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ProblemCheck::AccessTokenInvalid < ::ProblemCheck::InlineProblemCheck
|
|
self.priority = "high"
|
|
|
|
private
|
|
|
|
def translation_key
|
|
"dashboard.patreon.access_token_invalid"
|
|
end
|
|
end
|