mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
22 lines
540 B
Ruby
22 lines
540 B
Ruby
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
|