discourse/app/controllers/forums_controller.rb
Sam f5af4768eb FEATURE: add clean support for running Discourse in a subfolder
To setup set DISCOURSE_RELATIVE_URL_ROOT to the folder you wish
2015-03-09 13:14:29 +11:00

23 lines
501 B
Ruby

class ForumsController < ApplicationController
skip_before_filter :check_xhr
skip_before_filter :authorize_mini_profiler, only: [:status]
skip_before_filter :redirect_to_login_if_required, only: [:status]
def status
if $shutdown
render text: 'shutting down', status: 500, content_type: 'text/plain'
else
render text: 'ok', content_type: 'text/plain'
end
end
def error
raise "WAT - #{Time.now}"
end
def home_redirect
redirect_to path('/')
end
end