I have a many-to-many relationship involved with resources called Members and Memberships; think of a club with members who have different levels of membership fees.
What I'm trying to achieve is a delete operation when I have a member view with one or many memberships and want to remove it. The problem - how do I setup the link_to helper.
When I try
<%= link_to 'Delete-It', [@member, mbr], confirm: "Really?", method: :delete %>
The URL formed is ../member_memberships/836.12 which is being formed from the @member variable, plus the membership variable mbr. Of course that allows me to send in the id of the member which is 836 and the id of the membership fee 12 but not in a nice format.
The question is twofold:
- Why do I get this url format ? Is it a side effect of the routes.rb file ? I have a rule *delete "member_memberships/destroy"* which directs to the controller MemberMemberships (aka the join model in the many to many relationship between a Member and Membership
- Does it make sense to use a nested resource route so that a URL like ../member/836/memberships/12 becomes a more RESTful way of dealing with the delete operation ?
Ultimately I was trying to work out the best approach to passing the id of the member, which is easy with the basic link_to :delete operation and an additional parameter for the membership id that I want to delete.
Comments/suggestions and help most appreciated.