Sha256: 6e96d20ce123a9d16ffd79265ddb0f1a087bf94686f3b0201634a4868fd4b99f

Contents?: true

Size: 264 Bytes

Versions: 1

Compression:

Stored size: 264 Bytes

Contents

class ApplicationController < ActionController::Base
  protect_from_forgery
  
	def set_current_user
	User.current = current_user
	end

	def after_sign_in_path_for(resource) 
	new_evaluation_path
	end 

	def after_sign_out_path_for(resource) 
	root_path
	end 
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
multiinsert-0.0.1 app/controllers/application_controller.rb