discourse/app/controllers/forums_controller.rb

20 lines
340 B
Ruby
Raw Normal View History

2018-01-15 09:43:26 +08:00
# frozen_string_literal: true
require "read_only_header"
2019-05-03 18:21:07 +08:00
class ForumsController < ActionController::Base
include ReadOnlyHeader
2019-05-03 18:21:07 +08:00
before_action :check_readonly_mode
after_action :add_readonly_header
2013-02-06 03:16:51 +08:00
def status
if $shutdown
render plain: "shutting down", status: 500
2013-02-06 03:16:51 +08:00
else
render plain: "ok"
2013-02-06 03:16:51 +08:00
end
end
end