discourse/app/services/problem_check/subfolder_ends_in_slash.rb

12 lines
207 B
Ruby

# frozen_string_literal: true
class ProblemCheck::SubfolderEndsInSlash < ProblemCheck
self.priority = "low"
def call
return no_problem if !Discourse.base_path.end_with?("/")
problem
end
end