# 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 private def translation_key "dashboard.force_https_warning" end end