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

16 lines
360 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class ForumsController < ApplicationController
2013-02-07 16:45:24 +01:00
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]
2013-02-05 14:16:51 -05:00
def status
if $shutdown
render plain: 'shutting down', status: 500
2013-02-05 14:16:51 -05:00
else
render plain: 'ok'
2013-02-05 14:16:51 -05:00
end
end
end