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
Joffrey JAFFEUX fbeb488ec5 DEV: s/\$redis/Discourse\.redis
With manual merge for conflicts
2019-12-03 13:27:12 +01:00

20 lines
375 B
Ruby

# frozen_string_literal: true
require "read_only_header"
class ForumsController < ActionController::Base
include ReadOnlyHeader
before_action :check_readonly_mode
after_action :add_readonly_header
def status
if $shutdown # rubocop:disable Style/GlobalVars
render plain: "shutting down", status: 500
else
render plain: "ok"
end
end
end