mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 18:51:07 +08:00
Initial release of Discourse
This commit is contained in:
22
app/controllers/request_access_controller.rb
Normal file
22
app/controllers/request_access_controller.rb
Normal file
@ -0,0 +1,22 @@
|
||||
class RequestAccessController < ApplicationController
|
||||
|
||||
skip_before_filter :check_xhr, :check_restricted_access
|
||||
|
||||
def new
|
||||
@return_path = params[:return_path] || "/"
|
||||
render layout: 'no_js'
|
||||
end
|
||||
|
||||
def create
|
||||
@return_path = params[:return_path] || "/"
|
||||
|
||||
if params[:password] == SiteSetting.access_password
|
||||
cookies.permanent['_access'] = SiteSetting.access_password
|
||||
redirect_to @return_path
|
||||
else
|
||||
flash[:error] = I18n.t(:'request_access.incorrect')
|
||||
render :new, layout: 'no_js'
|
||||
end
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user