Can display information about the movement attached to an inbox entry
This commit is contained in:
@ -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
|
||||
*/
|
||||
|
Reference in New Issue
Block a user