added endpoint to ape

This commit is contained in:
Miodec 2022-09-01 15:13:48 +02:00
parent df64b6eaf7
commit 0fc2397a62

View file

@ -192,4 +192,8 @@ export default class Users {
},
});
}
async getInbox(): Promise<Ape.EndpointData> {
return await this.httpClient.patch(`${BASE_PATH}/inbox`);
}
}