mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 04:53:51 +08:00
20 lines
340 B
Ruby
20 lines
340 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
|
|
render plain: "shutting down", status: 500
|
|
else
|
|
render plain: "ok"
|
|
end
|
|
end
|
|
|
|
end
|