add frontend reference search lookup

This commit is contained in:
amentis 2023-10-30 17:53:30 +02:00
parent f744573f02
commit 477e4e498e
2 changed files with 13 additions and 1 deletions

View File

@ -78,6 +78,6 @@ reference-type:
- code: tag
dataType: Text
- code: uri
dataType: text
dataType: Text
taxonomy:
fields:

View File

@ -0,0 +1,12 @@
import { Lookup } from "@common/model/lookup";
import { ReferenceType } from "../common/enum/reference-type";
export class ReferenceSearchLookup extends Lookup{
like: string;
type: ReferenceType;
key: string;
constructor() {
super();
}
}