diff options
Diffstat (limited to 'catalog-ui/src/app/models/artifacts.ts')
-rw-r--r-- | catalog-ui/src/app/models/artifacts.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/catalog-ui/src/app/models/artifacts.ts b/catalog-ui/src/app/models/artifacts.ts index 959480b0f0..27c0dd6c49 100644 --- a/catalog-ui/src/app/models/artifacts.ts +++ b/catalog-ui/src/app/models/artifacts.ts @@ -3,6 +3,7 @@ * SDC * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) 2019 Nokia. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -111,6 +112,10 @@ export class ArtifactModel { return _.has(ArtifactType.THIRD_PARTY_RESERVED_TYPES, this.artifactType); }; + public isGenericBrowseable = ():boolean => { + return this.artifactType == ArtifactType.VES_EVENTS; + }; + public toJSON = ():any => { this.selected = undefined; this.originalDescription = undefined; |