[TLC-674] Duplicate detection comp, template, i18n

Duplicate data is accessed in the submission section,
pooled tasks list and claimed tasks list.
This commit is contained in:
Kim Shepherd
2023-12-19 14:47:27 +13:00
parent 061129ecb7
commit b672668e15
13 changed files with 266 additions and 4 deletions

View File

@@ -0,0 +1,24 @@
import {autoserialize} from "cerialize";
import {MetadataMap} from "../../../core/shared/metadata.models";
export class Duplicate {
/**
* The item title
*/
@autoserialize
title: string;
@autoserialize
uuid: string;
@autoserialize
workflowItemId: bigint;
@autoserialize
workspaceItemId: bigint;
@autoserialize
owningCollection: string;
/**
* Metadata for the bitstream (e.g. dc.description)
*/
@autoserialize
metadata: MetadataMap;
}