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

15 lines
360 B
Ruby

class ForumsController < ApplicationController
skip_before_action :preload_json, :check_xhr
skip_before_action :authorize_mini_profiler, only: [:status]
skip_before_action :redirect_to_login_if_required, only: [:status]
def status
if $shutdown
render plain: 'shutting down', status: 500
else
render plain: 'ok'
end
end
end