I'm using devise on Rails.
I want to set some values for the user object variable in the sign up controller create action. for that I want to access the user object
My use case is set the plan_id at sign_up; the url is example.com/users/sign_up?plan_id=1
I want to set that plan_id to the user object which was just created..
Thanks