Hi Guys, I was wondering if sb could help me. I have the following problem: -I want to create a complex form using railscast tutorial ( http://railscasts.com/episodes/73-complex-forms-part-1). Well, to perform this I need to update my controller(in this case the controller responsible to manipulate user). But I''m using Devise gem and I don''t know how I could manipulate the controller created by Devise. I know only how to manipulate Devise views.... ;/ Sb have the same problem or knows how can I manipulate Devise''s controller? Thx :D -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Maybe this link can help you. https://github.com/plataformatec/devise/wiki/How-To:-Customize-routes-to-user-registration-pages On Dec 20, 5:04 pm, Bruno Meira <goesme...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi Guys, > I was wondering if sb could help me. > I have the following problem: > -I want to create a complex form using railscast tutorial (http://railscasts.com/episodes/73-complex-forms-part-1). Well, to perform > this I need to update my controller(in this case the controller responsible > to manipulate user). > But I''m using Devise gem and I don''t know how I could manipulate the > controller created by Devise. I know only how to manipulate Devise > views.... ;/ > Sb have the same problem or knows how can I manipulate Devise''s controller? > > Thx :D-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
You can override the methods in the Devise controllers Look at the Devise Wiki; especially the articles around customizing the rendering after signup & signout. That should point you in the right direction. On Tue, Dec 20, 2011 at 2:04 PM, Bruno Meira <goesmeira-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi Guys, > I was wondering if sb could help me. > I have the following problem: > -I want to create a complex form using railscast tutorial > (http://railscasts.com/episodes/73-complex-forms-part-1). Well, to perform > this I need to update my controller(in this case the controller responsible > to manipulate user). > But I''m using Devise gem and I don''t know how I could manipulate the > controller created by Devise. I know only how to manipulate Devise views.... > ;/ > Sb have the same problem or knows how can I manipulate Devise''s controller? > > Thx :D > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en.-- Greg Akins http://twitter.com/akinsgre -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Hi Greg. I will take a look in this session. Thx for the help:D -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Hi Halisson, Thx for the help. Well, I found yesterday a solution for this problem. My solution was to create a custom controller that inherits from Devise::RegistrationsController. This controller override update and edit methods doing whatever I want to do. :D. If you do this solution you need to change your view from devise to view from this new controller. :D -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.