mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
13 lines
234 B
Ruby
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
|