discourse/app/controllers/forums_controller.rb

20 lines
467 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class ForumsController < ApplicationController
2013-02-07 10:45:24 -05:00
skip_before_filter :preload_json, :check_xhr
2013-02-05 14:16:51 -05:00
skip_before_filter :authorize_mini_profiler, only: [:status]
2013-06-06 00:40:10 -04:00
skip_before_filter :redirect_to_login_if_required, only: [:status]
2013-02-05 14:16:51 -05:00
def status
if $shutdown
render text: 'shutting down', status: 500, content_type: 'text/plain'
2013-02-05 14:16:51 -05:00
else
render text: 'ok', content_type: 'text/plain'
2013-02-05 14:16:51 -05:00
end
end
2014-06-16 14:25:33 -04:00
def home_redirect
redirect_to path('/')
2014-06-16 14:25:33 -04:00
end
2013-02-05 14:16:51 -05:00
end