Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Build a Simple Ruby on Rails Application Creating an Authentication System Generating the Devise Views

The sign_up parameters in Rails 4.+ can't be allowed in user.rb in models anymore.

Hi, just thought I'd let you know. I'm taking this lesson while running Ruby 2.1.2 on Rails 4.1.1. Looks like in my version, you must set these parameters to be allowed in the controller.

In application_controller.rb, type in this: def configure_permitted_parameters devise_parameter_sanitizer.for(:sign_up) { |u| u.permit(:first_name, :last_name, :email, :password, :password_confirmation) } end

Cite: http://devise.plataformatec.com.br/#getting-started/strong-parameters

Nick Hennen
Nick Hennen
7,812 Points

How do you set write the method for last_name after inserting this code into application_controller.rb?

1 Answer