This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/controllers/forums_controller.rb
2014-07-03 07:52:14 -07:00

24 lines
444 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
else
render text: 'ok'
end
end
def error
raise "WAT - #{Time.now.to_s}"
end
def home_redirect
redirect_to '/'
end
end