Class: Phcscriptcdnpro::ApplicationController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
app/controllers/phcscriptcdnpro/application_controller.rb

Instance Method Summary collapse

Instance Method Details

#current_userObject



12
13
14
# File 'app/controllers/phcscriptcdnpro/application_controller.rb', line 12

def current_user
	@_current_user ||= AuthRocket::Session.from_token(session[:ar_token]).try(:user)
end

#new_login_urlObject



17
18
19
20
# File 'app/controllers/phcscriptcdnpro/application_controller.rb', line 17

def 
ENV['AUTHROCKET_LOGIN_URL']
	# $ar_login_url
end

#require_userObject

AuthRocket User Helpers



5
6
7
8
9
10
# File 'app/controllers/phcscriptcdnpro/application_controller.rb', line 5

def require_user
	unless current_user
		session[:last_url] = request.get? ? url_for(params) : url_for
		redirect_to 
	end
end