discourse/app/services/problem_check/inline_problem_check.rb

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