2013-02-05 14:16:51 -05:00
|
|
|
class ForumsController < ApplicationController
|
2013-02-07 16:45:24 +01:00
|
|
|
|
2014-05-24 22:50:39 +10:00
|
|
|
skip_before_filter :check_xhr
|
2013-02-05 14:16:51 -05:00
|
|
|
skip_before_filter :authorize_mini_profiler, only: [:status]
|
2013-06-06 14:40:10 +10:00
|
|
|
skip_before_filter :redirect_to_login_if_required, only: [:status]
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
def status
|
|
|
|
if $shutdown
|
2015-02-06 15:56:21 +11:00
|
|
|
render text: 'shutting down', status: 500, content_type: 'text/plain'
|
2013-02-05 14:16:51 -05:00
|
|
|
else
|
2015-02-06 15:56:21 +11:00
|
|
|
render text: 'ok', content_type: 'text/plain'
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def error
|
2014-08-14 23:50:52 +05:30
|
|
|
raise "WAT - #{Time.now}"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-06-16 11:25:33 -07:00
|
|
|
def home_redirect
|
|
|
|
redirect_to '/'
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|