FEATURE: allow plugins to easily detect if running in Rack

Usage: Discourse.running_in_rack? to tell if rack was booted
This commit is contained in:
Sam
2017-11-16 08:39:11 +11:00
parent 20fbf81505
commit f52111f787
3 changed files with 19 additions and 0 deletions

View File

@ -499,4 +499,8 @@ module Discourse
nil
end
def self.running_in_rack?
ENV["DISCOURSE_RUNNING_IN_RACK"] == "1"
end
end