mirror of
https://github.com/discourse/discourse.git
synced 2025-01-29 13:44:15 +08:00
11 lines
251 B
Ruby
11 lines
251 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ProblemCheck::InlineProblemCheck < ProblemCheck
|
||
|
def call
|
||
|
# The logic of this problem check is performed inline, so this class is
|
||
|
# purely here to support its configuration.
|
||
|
#
|
||
|
no_problem
|
||
|
end
|
||
|
end
|