2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/app/controllers/forums_controller.rb

15 lines
414 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 text: 'shutting down', status: 500, content_type: 'text/plain'
else
render text: 'ok', content_type: 'text/plain'
end
end
end