2018-01-14 20:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
class ForumsController < ApplicationController
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
skip_before_action :preload_json, :check_xhr
|
|
|
|
skip_before_action :authorize_mini_profiler, only: [:status]
|
|
|
|
skip_before_action :redirect_to_login_if_required, only: [:status]
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
def status
|
|
|
|
if $shutdown
|
2017-04-10 08:01:25 -04:00
|
|
|
render plain: 'shutting down', status: 500
|
2013-02-05 14:16:51 -05:00
|
|
|
else
|
2017-04-10 08:01:25 -04:00
|
|
|
render plain: 'ok'
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|