Can display information about the movement attached to an inbox entry

This commit is contained in:
2025-05-12 19:40:05 +02:00
parent 76f9e37ded
commit 07ee499742
3 changed files with 94 additions and 2 deletions

View File

@ -59,6 +59,17 @@ export class MovementApi {
).data;
}
/**
* Get a single movement information
*/ static async GetSingleMovement(movement_id: number): Promise<Movement> {
return (
await APIClient.exec({
uri: `/movement/${movement_id}`,
method: "GET",
})
).data;
}
/**
* Update a movement information
*/