Sha256: 575aa1f1f9e61a65cf7e6d616971f2166cd47c826d757c369e182a97ff3e6d6a

Contents?: true

Size: 732 Bytes

Versions: 30

Compression:

Stored size: 732 Bytes

Contents

module Phcpresspro
	class ApplicationController < ActionController::Base

		# Prevent CSRF attacks by raising an exception.
		before_filter :require_user
		protect_from_forgery with: :exception

		# AuthRocket User Helpers
		def require_user
			unless current_user
				session[:last_url] = request.get? ? url_for(params) : url_for
				redirect_to new_login_url
			end
		end
	
		def current_user
			@_current_user ||= AuthRocket::Session.from_token(session[:ar_token]).try(:user)
		end
		helper_method :current_user
	
		def new_login_url
		ENV['AUTHROCKET_LOGIN_URL']
			# $ar_login_url
		end
		helper_method :new_login_url

		# Load PHCEngine Helpers
		helper Phctitleseo::Engine.helpers
		helper Phcnotifi::Engine.helpers

	end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
phcpresspro-4.2.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.2.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.2.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.1.9 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.1.8 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.1.6 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.1.5 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.1.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.1.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.1.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.0.6 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.0.5 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.0.4 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.0.3 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.0.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.0.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-4.0.0 app/controllers/phcpresspro/application_controller.rb
phcpresspro-3.1.2 app/controllers/phcpresspro/application_controller.rb
phcpresspro-3.1.1 app/controllers/phcpresspro/application_controller.rb
phcpresspro-3.1.0 app/controllers/phcpresspro/application_controller.rb