This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/controllers/forums_controller.rb
2018-01-15 12:44:54 +11:00

18 lines
391 B
Ruby

# frozen_string_literal: true
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