aboutsummaryrefslogtreecommitdiffstats
path: root/dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/messagerouter/mr-topic-client-list-popup-controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/messagerouter/mr-topic-client-list-popup-controller.js')
-rw-r--r--dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/messagerouter/mr-topic-client-list-popup-controller.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/messagerouter/mr-topic-client-list-popup-controller.js b/dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/messagerouter/mr-topic-client-list-popup-controller.js
new file mode 100644
index 0000000..624f404
--- /dev/null
+++ b/dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/messagerouter/mr-topic-client-list-popup-controller.js
@@ -0,0 +1,19 @@
+appDS2.controller('topicClientListPopupCtrl', function($scope, $log, $modalInstance, modalService, message) {
+
+ 'use strict';
+
+ // this object holds all app data and functions
+ $scope.dbcapp = {};
+
+ // Set the label variable for the template
+ $scope.dbcapp.label = 'Clients of Topic ' + message.topic.topicName;
+
+ // Source of data table
+ $scope.dbcapp.showTopic = message.topic;
+
+ // $log.debug('topicClientListPopupCtrl: showTopic.clients is ' + JSON.stringify($scope.dbcapp.showTopic.clients));
+
+ $scope.dbcapp.close = function() {
+ $modalInstance.close();
+ };
+});