2018-01-14 19:43:26 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-05-06 09:07:49 -05:00
|
|
|
require "read_only_header"
|
2019-05-03 05:21:07 -05:00
|
|
|
|
2019-01-21 00:37:04 -06:00
|
|
|
class ForumsController < ActionController::Base
|
2019-05-06 09:07:49 -05:00
|
|
|
include ReadOnlyHeader
|
2019-05-03 05:21:07 -05:00
|
|
|
|
|
|
|
before_action :check_readonly_mode
|
|
|
|
after_action :add_readonly_header
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
def status
|
2019-12-03 03:05:53 -06:00
|
|
|
if $shutdown # rubocop:disable Style/GlobalVars
|
2020-03-06 17:15:55 -06:00
|
|
|
render plain: "shutting down", status: (params[:shutdown_ok] ? 200 : 500)
|
2013-02-05 13:16:51 -06:00
|
|
|
else
|
2019-05-06 09:07:49 -05:00
|
|
|
render plain: "ok"
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|