1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-12-27 22:18:51 +00:00

Delete notification when removing a user from a group

This commit is contained in:
Pierre HUBERT 2021-01-25 18:33:23 +01:00
parent 7141312eb5
commit 30f133b2a3

View File

@ -295,7 +295,8 @@ pub fn delete_member(r: &mut HttpRequestHandler) -> RequestResult {
groups_helper::delete_member(&group_id, &user_id)?;
// TODO : Delete related notifications
// Delete related notifications
notifications_helper::delete_all_related_to_group_membership_notifications(&user_id, &group_id)?;
r.success("Membership of the user has been successfully deleted!")
}