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
2019-05-03 12:21:07 +02:00

20 lines
327 B
Ruby

# frozen_string_literal: true
require "read_only"
class ForumsController < ActionController::Base
include ReadOnly
before_action :check_readonly_mode
after_action :add_readonly_header
def status
if $shutdown
render plain: 'shutting down', status: 500
else
render plain: 'ok'
end
end
end