mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
Initial release of Discourse
This commit is contained in:
commit
21b5628528
2932 changed files with 143949 additions and 0 deletions
19
app/controllers/forums_controller.rb
Normal file
19
app/controllers/forums_controller.rb
Normal file
|
@ -0,0 +1,19 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue