mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
19 lines
458 B
Ruby
19 lines
458 B
Ruby
class ForumsController < ApplicationController
|
|
|
|
skip_before_filter :check_xhr, only: [:request_access, :request_access_submit, :status]
|
|
skip_before_filter :check_restricted_access, only: [:status]
|
|
skip_before_filter :authorize_mini_profiler, only: [:status]
|
|
|
|
def status
|
|
if $shutdown
|
|
render :text => 'shutting down', :status => 500
|
|
else
|
|
render :text => 'ok'
|
|
end
|
|
end
|
|
|
|
def error
|
|
raise "WAT - #{Time.now.to_s}"
|
|
end
|
|
|
|
end
|