blob: 20e2e1bddca7bc527561f58ae66dabf7ce109b39 [file] [log] [blame]
Iftekharul Islamcd789502017-04-19 14:37:55 -05001/**
2 * Controller for security
3 *
4 * @module app/configuration
5 * @exports securityController
6 * @name securityController
7 * @version 0.1.0
8 */
9
10window.angular && (function (angular) {
11 'use strict';
12
13 angular
14 .module('app.configuration')
15 .controller('securityController', [
Gunnar Millseedefd32018-02-28 17:02:34 -060016 '$scope',
17 '$window',
18 'APIUtils',
Iftekharul Islamcd789502017-04-19 14:37:55 -050019 'dataService',
20 function($scope, $window, APIUtils, dataService){
21 $scope.dataService = dataService;
22 }
23 ]
24 );
25
26})(angular);