Allow users to delete group invitations
Closed this issue · 0 comments
mbramson commented
Currently group invitations are only removed when they are accepted. There is no way to deny a membership request or an invite, all a user can do is ignore it forever.
Implement the :delete action for both the UsersGroupMembershipRequestController
and the GroupInvitationController
.
Allow the owners of groups to delete GroupMembershipRequest
s using the :delete action on the GroupInvitationController
which should be located on the :index action's template.
Allow users to delete their own GroupMembershipRequest
s using the :delete action on the UsersGroupMembershipRequestController
which should be located on the :index action's template.
- Implement controller actions
- :delete action on
GroupInvitationController
- A
GroupMembershipRequest
associated with aGroup
should only be deletable by the group's owner.
- A
- :delete action on
UsersGroupMembershipRequestController
- A
GroupMembershipRequest
associated with aUser
should only be deletable by that user.
- A
- :delete action on
- Add delete links to the UI
- Delete links on
GroupInvitationController
index.html.eex
template. - Delete links on
UsersGroupMembershipRequestController
index.html.eex
template
- Delete links on