16 lines
360 B
Ruby
16 lines
360 B
Ruby
class ForumsController < ApplicationController
|
|
|
|
skip_before_filter :preload_json, :check_xhr
|
|
skip_before_filter :authorize_mini_profiler, only: [:status]
|
|
skip_before_filter :redirect_to_login_if_required, only: [:status]
|
|
|
|
def status
|
|
if $shutdown
|
|
render plain: 'shutting down', status: 500
|
|
else
|
|
render plain: 'ok'
|
|
end
|
|
end
|
|
|
|
end
|