Hi there, I want to truncate all the data from user model being edited in different tabs (e.g. privacy data like newsletter receiving, login data, user data, etc.), being convinient for the user. First I wrote a controller for each section editing the same model. I just don''t think it''s the best way, that''s why I discarted it. I''m taking care about the RESTfull resources, so of course, right now it''s called <%= link_to ''Edit member profile'', edit_user_path(logged_in_user) %>. I have about 30 information to edit in the user model and want to let thm edit separately. How do you do that? Any experience, any suggestions? Greetings Mayo -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
What about adding different actions to it (e.g. privacy, account,
userdata)?
I do have that right now in routes:
map.resources :users, :member => { :enable => :put } do |users|
users.resources :roles
users.resources :photos, :name_prefix => ''user_'',
:controller =>
''user_photos''
users.resources :friends
users.resources :gardens
end
means adding: { :enable => :put, :privacy => :get, :account => :get,
:userdata => :get }
and then I create a new view for the depending actions?
What about calling a GET? Isn''t the update a PUT? Which of those to
take
care about?
Being perfect the URL should look like
"http://localhost:3000/users/7/privacy"
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---