2013-02-06 03:16:51 +08:00
|
|
|
class ForumsController < ApplicationController
|
2013-02-07 23:45:24 +08:00
|
|
|
|
2015-05-20 15:12:16 +08:00
|
|
|
skip_before_filter :preload_json, :check_xhr
|
2013-02-06 03:16:51 +08:00
|
|
|
skip_before_filter :authorize_mini_profiler, only: [:status]
|
2013-06-06 12:40:10 +08:00
|
|
|
skip_before_filter :redirect_to_login_if_required, only: [:status]
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
def status
|
|
|
|
if $shutdown
|
2015-02-06 12:56:21 +08:00
|
|
|
render text: 'shutting down', status: 500, content_type: 'text/plain'
|
2013-02-06 03:16:51 +08:00
|
|
|
else
|
2015-02-06 12:56:21 +08:00
|
|
|
render text: 'ok', content_type: 'text/plain'
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|