diff --git a/src/controllers/groups_controller.rs b/src/controllers/groups_controller.rs index d1255ea..5afd4cf 100644 --- a/src/controllers/groups_controller.rs +++ b/src/controllers/groups_controller.rs @@ -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!") }