Skip to content

Commit

Permalink
refactor(ontology): disable rti image class (DSP-1559) (#430)
Browse files Browse the repository at this point in the history
* refactor(ontology): disable rti image class (DSP-1559)

* chore(ontology): fix typo
  • Loading branch information
kilchenmann committed Apr 22, 2021
1 parent b05484e commit 48c3c76
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions src/app/project/ontology/default-data/default-resource-classes.ts
Expand Up @@ -13,8 +13,8 @@ export class DefaultResourceClasses {
iri: Constants.Resource,
label: 'Object without representation',
icons: [
'person',
'person_outline',
'person',
'group',
'groups',
'people_alt',
Expand Down Expand Up @@ -128,7 +128,7 @@ export class DefaultResourceClasses {
},
{
iri: Constants.KnoraApiV2 + Constants.HashDelimiter + 'DocumentRepresentation',
label: 'Document (Word, PDF, etc.)',
label: 'Document (PDF, etc.)',
icons: [
'description',
'article',
Expand All @@ -140,15 +140,18 @@ export class DefaultResourceClasses {
'drafts',
'library_books'
]
},
{
iri: Constants.KnoraApiV2 + Constants.HashDelimiter + 'DDDRepresentation',
label: 'RTI Image',
icons: [
'view_in_ar',
'layers'
]
}
];

}

/* --> DSP-1559: disable RTI class;
the following object can be added again to the default classes as soon as a RTI viewer is implemented
{
iri: Constants.KnoraApiV2 + Constants.HashDelimiter + 'DDDRepresentation',
label: 'RTI Image',
icons: [
'view_in_ar',
'layers'
]
}
*/

0 comments on commit 48c3c76

Please sign in to comment.