tap/app/controllers/application_controller.rb

32 lines
873 B
Ruby
Raw Normal View History

2014-11-06 13:46:59 +00: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 16:17:11 +00:00
before_action :configure_permitted_parameters, if: :devise_controller?
2014-12-15 18:43:02 +00:00
rescue_from CanCan::AccessDenied do |exception|
redirect_to root_path, flash: { error: exception.message }
2014-12-15 18:43:02 +00:00
end
2014-12-09 16:17:11 +00:00
def after_sign_in_path_for(resource)
2014-12-09 16:28:24 +00:00
root_path
2014-12-09 16:17:11 +00:00
end
def after_sign_up_path_for(resource)
root_path
2014-12-09 16:17:11 +00:00
end
2014-11-10 01:30:42 +00:00
2014-12-09 21:32:54 +00:00
protected
def configure_permitted_parameters
2014-12-10 13:18:56 +00:00
devise_parameter_sanitizer.for(:sign_up) { |u| u.permit(
:nickname, :name, :last_name, :password, :password_confirmation,
2015-02-09 16:06:24 +00:00
:avatar
2014-12-10 13:18:56 +00:00
) }
2014-12-10 13:18:56 +00:00
devise_parameter_sanitizer.for(:account_update) { |u| u.permit(
:password, :password_confirmation, :current_password, :avatar
) }
2014-12-09 21:32:54 +00:00
end
2014-11-06 13:46:59 +00:00
end