I've got Users, Teams, and TeamMemberships, which are associated with a has_many :through.
I'm trying add the ability to remove a User from a Team, which requires destroying the TeamMembership model that associates them.
My Models are as follows:
# models/team.rb
class Team < ActiveRecord::Base
has_many :team_memberships, :dependent => :destroy
has_many :members, :through => :team_memberships
end
# models/user.rb
class User < ActiveRecord::Base
has_many :team_memberships
has_many :teams, :through => :team_memberships
end
# models/team_membership.rb
class TeamMembership < ActiveRecord::Base
belongs_to :team
belongs_to :member, class_name: 'User', foreign_key: 'user_id'
end
The view currently looks like this:
- @team.members.each do |member|
.member
= link_to member.name, user_path(member)
= button_to "Remove User"
I'm looking for help with finishing the implementation for the "Remove User" button. I'm not sure how to pass in the TeamMembership that I need to destroy.