tap/app/controllers/application_controller.rb

26 lines
691 B
Ruby
Raw Normal View History

2014-11-06 14:46:59 +01:00
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
2014-12-09 17:17:11 +01:00
before_action :configure_permitted_parameters, if: :devise_controller?
def after_sign_in_path_for(resource)
2014-12-09 17:28:24 +01:00
root_path
2014-12-09 17:17:11 +01:00
end
def after_sign_up_path_for(resource)
2014-12-09 17:28:24 +01:00
new_user_session_path
2014-12-09 17:17:11 +01:00
end
2014-11-10 02:30:42 +01:00
2014-11-23 21:12:31 +01:00
include OrdersHelper
2014-12-09 11:38:10 +01:00
include ApplicationHelper
2014-12-09 17:17:11 +01:00
protected
def configure_permitted_parameters
devise_parameter_sanitizer.for(:sign_up) { |u| u.permit(
:email, :nickname, :name, :last_name, :password, :password_confirmation
) }
end
2014-11-06 14:46:59 +01:00
end