Skip to content
Snippets Groups Projects
Verified Commit f088c867 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Fix signup for rails4

parent 2ab76ca5
No related branches found
No related tags found
1 merge request!1Fix Links To Gitlab Cloud
Loading
Loading
@@ -9,6 +9,7 @@ class ApplicationController < ActionController::Base
before_filter :dev_tools if Rails.env == 'development'
before_filter :default_headers
before_filter :add_gon_variables
before_filter :configure_permitted_parameters, if: :devise_controller?
 
protect_from_forgery
 
Loading
Loading
@@ -201,4 +202,9 @@ class ApplicationController < ActionController::Base
formats: [:html]
)
end
def configure_permitted_parameters
devise_parameter_sanitizer.for(:sign_in) { |u| u.permit(:username, :email, :password) }
devise_parameter_sanitizer.for(:sign_up) { |u| u.permit(:username, :email, :name, :password, :password_confirmation) }
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment