2013-02-05 13:16:51 -06:00
|
|
|
class ForumsController < ApplicationController
|
2013-02-07 09:45:24 -06:00
|
|
|
|
2015-05-20 02:12:16 -05:00
|
|
|
skip_before_filter :preload_json, :check_xhr
|
2013-02-05 13:16:51 -06:00
|
|
|
skip_before_filter :authorize_mini_profiler, only: [:status]
|
2013-06-05 23:40:10 -05:00
|
|
|
skip_before_filter :redirect_to_login_if_required, only: [:status]
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
def status
|
|
|
|
if $shutdown
|
2015-02-05 22:56:21 -06:00
|
|
|
render text: 'shutting down', status: 500, content_type: 'text/plain'
|
2013-02-05 13:16:51 -06:00
|
|
|
else
|
2015-02-05 22:56:21 -06:00
|
|
|
render text: 'ok', content_type: 'text/plain'
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def error
|
2014-08-14 13:20:52 -05:00
|
|
|
raise "WAT - #{Time.now}"
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2014-06-16 13:25:33 -05:00
|
|
|
def home_redirect
|
2015-03-08 19:45:36 -05:00
|
|
|
redirect_to path('/')
|
2014-06-16 13:25:33 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|