mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 22:13:02 +00:00
16 lines
352 B
TypeScript
16 lines
352 B
TypeScript
const RELATION_METADATA_PREFIX = 'relation.'
|
|
|
|
/**
|
|
* The submission options for fields that can represent relationships
|
|
*/
|
|
export class RelationshipOptions {
|
|
relationshipType: string;
|
|
filter: string;
|
|
searchConfiguration: string;
|
|
nameVariants: boolean;
|
|
|
|
get metadataField() {
|
|
return RELATION_METADATA_PREFIX + this.relationshipType
|
|
}
|
|
}
|