Add new TODOs

This commit is contained in:
2023-06-16 18:47:08 +02:00
parent 9dd3811136
commit cffa8f40c2
2 changed files with 13 additions and 2 deletions

View File

@@ -44,3 +44,13 @@ pub async fn add_member(
Ok(res)
})
}
/// Remove a membership to a family
pub async fn remove_membership(family_id: FamilyID, user_id: UserID) {
todo!()
}
/// Remove all memberships of user
pub async fn remove_all_user_membership(user_id: UserID) -> anyhow::Result<()> {
todo!()
}