2013-02-05 13:16:51 -06:00
|
|
|
class ForumsController < ApplicationController
|
2013-02-07 09:45:24 -06:00
|
|
|
|
2013-06-25 14:05:16 -05:00
|
|
|
skip_before_filter :check_xhr, only: [:status]
|
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
|
2013-03-23 10:02:59 -05:00
|
|
|
render text: 'shutting down', status: 500
|
2013-02-05 13:16:51 -06:00
|
|
|
else
|
2013-03-22 13:08:11 -05:00
|
|
|
render text: 'ok'
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def error
|
|
|
|
raise "WAT - #{Time.now.to_s}"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|