mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 14:33:39 +08:00
19 lines
310 B
Ruby
19 lines
310 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
|
||
|
|
||
|
private
|
||
|
|
||
|
def translation_key
|
||
|
"dashboard.force_https_warning"
|
||
|
end
|
||
|
end
|