- add key word table for submitter with adeqate validations ind DatasetController.ts an model Subject.ts
All checks were successful
CI Pipeline / japa-tests (push) Successful in 51s

- npm updates
This commit is contained in:
Kaimbacher 2023-05-19 11:30:49 +02:00
parent 43fd349301
commit 440fdb9fa7
8 changed files with 657 additions and 324 deletions

View file

@ -16,6 +16,15 @@ export interface Dataset {
coverage: Coverage,
errors?: IErrorMessage;
// async (user): Promise<void>;
subjects: Array<Subject>
}
export interface Subject {
// id: number;
language: string
type: string;
value: string;
external_key?: string;
}
export interface Title {