32 lines
905 B
Ruby
32 lines
905 B
Ruby
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
|
|
before_action :configure_permitted_parameters, if: :devise_controller?
|
|
|
|
rescue_from CanCan::AccessDenied do |exception|
|
|
flash[:error] = exception.message
|
|
redirect_to root_path
|
|
end
|
|
|
|
def after_sign_in_path_for(resource)
|
|
root_path
|
|
end
|
|
|
|
def after_sign_up_path_for(resource)
|
|
new_user_session_path
|
|
end
|
|
|
|
protected
|
|
|
|
def configure_permitted_parameters
|
|
devise_parameter_sanitizer.for(:sign_up) { |u| u.permit(
|
|
:nickname, :name, :last_name, :password, :password_confirmation,
|
|
:current_password, :avatar
|
|
) }
|
|
devise_parameter_sanitizer.for(:account_update) { |u| u.permit(
|
|
:password, :password_confirmation, :current_password, :avatar
|
|
) }
|
|
end
|
|
|
|
end
|