Add addressee history to ticket serialization

This update extends the tickets serialization and normalisation process to include addressee history. With the changes, AddresseeHistory class now also keeps track of who removed an addressee. Additional types, tests and interfaces have been introduced to support this change.
This commit is contained in:
2024-04-23 23:39:01 +02:00
parent ed45f14a45
commit 45828174d1
5 changed files with 89 additions and 9 deletions

View File

@@ -51,6 +51,8 @@ export interface UserGroup {
excludeKey: string,
}
export type UserGroupOrUser = User | UserGroup;
export interface UserAssociatedInterface {
type: "user";
id: number;