discourse/app/services/problem_check/force_https.rb

13 lines
234 B
Ruby

# frozen_string_literal: true
class ProblemCheck::ForceHttps < ProblemCheck
self.priority = "low"
def call
return no_problem if SiteSetting.force_https
return no_problem if !data.check_force_https
problem
end
end