2013-02-06 03:16:51 +08:00
|
|
|
class ForumsController < ApplicationController
|
2013-02-07 23:45:24 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
skip_before_filter :check_xhr, only: [:request_access, :request_access_submit, :status]
|
|
|
|
skip_before_filter :check_restricted_access, only: [:status]
|
|
|
|
skip_before_filter :authorize_mini_profiler, only: [:status]
|
|
|
|
|
|
|
|
def status
|
|
|
|
if $shutdown
|
2013-03-23 23:02:59 +08:00
|
|
|
render text: 'shutting down', status: 500
|
2013-02-06 03:16:51 +08:00
|
|
|
else
|
2013-03-23 02:08:11 +08:00
|
|
|
render text: 'ok'
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def error
|
|
|
|
raise "WAT - #{Time.now.to_s}"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|