discourse/app/controllers/forums_controller.rb

13 lines
211 B
Ruby
Raw Normal View History

2018-01-14 20:43:26 -05:00
# frozen_string_literal: true
class ForumsController < ActionController::Base
2013-02-05 14:16:51 -05:00
def status
if $shutdown
render plain: 'shutting down', status: 500
2013-02-05 14:16:51 -05:00
else
render plain: 'ok'
2013-02-05 14:16:51 -05:00
end
end
end