aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js
diff options
context:
space:
mode:
authorYoav Schneiderman <yoav.schneiderman@intl.att.com>2020-01-01 10:23:16 +0200
committerYoav Schneiderman <yoav.schneiderman@intl.att.com>2020-01-01 11:08:20 +0200
commit51d9784740b2fa457fe39046de222930d07da0c1 (patch)
tree06ed94c35c03fc1c162967d733ae7e2933176bdf /vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js
parente2404a51b7bc747f12f922afef0254e66efa3250 (diff)
Show Templates popup when deploying from "SDC Catalog"
Issue-ID: VID-739 Signed-off-by: Yoav Schneiderman <yoav.schneiderman@intl.att.com> Change-Id: I99fe7eff025341da9b8f8555c8fda4528c2c1426 Signed-off-by: Yoav Schneiderman <yoav.schneiderman@intl.att.com>
Diffstat (limited to 'vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js')
-rwxr-xr-xvid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js b/vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js
index 56729f2d3..10c4277ca 100755
--- a/vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js
+++ b/vid-app-common/src/main/webapp/app/vid/scripts/services/dataService.js
@@ -319,6 +319,12 @@ var DataService = function($log, DataService) {
},
setOwningEntityProperties: function (properties) {
_this.owningEntityProperties = properties;
+ },
+ getHasTemplate: function () {
+ return _this.hasTemplate;
+ },
+ setHasTemplate: function (hasTemplate) {
+ _this.hasTemplate = hasTemplate;
}
};
};