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