goddamn Emacs
This commit is contained in:
parent
7ab98b95e1
commit
d75c381506
|
@ -11,3 +11,5 @@
|
||||||
.sass-cache/
|
.sass-cache/
|
||||||
coverage/
|
coverage/
|
||||||
*.swp
|
*.swp
|
||||||
|
|
||||||
|
\#*#
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
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_filter :configure_permitted_parameters, if: :devise_controller?
|
|
||||||
|
|
||||||
protected
|
|
||||||
|
|
||||||
def configure_permitted_parameters
|
|
||||||
devise_parameter_sanitizer.for(:sign_up) { |u| u.permit(:screen_name, :email, :password, :password_confirmation, :remember_me) }
|
|
||||||
devise_parameter_sanitizer.for(:sign_in) { |u| u.permit(:login, :screen_name, :email, :password, :remember_me) }
|
|
||||||
devise_parameter_sanitizer.for(:account_update) { |u| u.permit(:screen_name, :email, :password, :password_confirmation, :current_password) }
|
|
||||||
end
|
|
||||||
end
|
|
Loading…
Reference in New Issue