Can download / delete member photo
This commit is contained in:
@ -199,6 +199,16 @@ export class MemberApi {
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the photo of a member
|
||||
*/
|
||||
static async RemoveMemberPhoto(m: Member): Promise<void> {
|
||||
await APIClient.exec({
|
||||
uri: `/family/${m.family_id}/member/${m.id}/photo`,
|
||||
method: "DELETE",
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete a family member
|
||||
*/
|
||||
|
Reference in New Issue
Block a user