diff options
author | Amichai Hemli <amichai.hemli@intl.att.com> | 2020-03-01 16:36:19 +0200 |
---|---|---|
committer | Amichai Hemli <amichai.hemli@intl.att.com> | 2020-03-01 17:14:07 +0200 |
commit | decd21f501cbd5df2ec7436cce98b0a75f61ee29 (patch) | |
tree | 95db7900ba2c9d5df067280dc3de036b503c7b3d /vid-app-common/src/main/java/org/onap | |
parent | f4a7b8b3469b291a21229f26636f2082ba933652 (diff) |
when signaling the frontend about templates check the correct flag FLAG_2004_CREATE_ANOTHER_INSTANCE_FROM_TEMPLATE
Issue-ID: VID-739
Signed-off-by: Amichai Hemli <amichai.hemli@intl.att.com>
Change-Id: Iaed25f1932eed675310c8d0003d415352991d19e
Diffstat (limited to 'vid-app-common/src/main/java/org/onap')
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/services/InstantiationTemplatesService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/services/InstantiationTemplatesService.java b/vid-app-common/src/main/java/org/onap/vid/services/InstantiationTemplatesService.java index 17520eef4..8837798ef 100644 --- a/vid-app-common/src/main/java/org/onap/vid/services/InstantiationTemplatesService.java +++ b/vid-app-common/src/main/java/org/onap/vid/services/InstantiationTemplatesService.java @@ -76,7 +76,7 @@ public class InstantiationTemplatesService { } public Collection<Service> setOnEachServiceIsTemplateExists(Collection<Service> services){ - if (!featureManager.isActive(Features.FLAG_2004_CREATE_ANOTHER_INSTANCE_FROM_TEMPLATE)){ + if (!featureManager.isActive(Features.FLAG_2004_INSTANTIATION_TEMPLATES_POPUP)){ return unsetTemplateExistsToAllServices(services); } |