summaryrefslogtreecommitdiffstats
path: root/dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/messagerouter/mr-topic-client-list-popup-controller.js
blob: 624f40470a75888931a4512ebd1306690a55865c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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();
	};
});