blob: eb6f6984de0d4a2a964eae248b2b473bec4a7c4e [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
Iftekharul Islamcd789502017-04-19 14:37:55 -05007 */
8
9window.angular && (function (angular) {
10 'use strict';
11
12 angular
13 .module('app.configuration')
14 .controller('securityController', [
Gunnar Millseedefd32018-02-28 17:02:34 -060015 '$scope',
16 '$window',
17 'APIUtils',
Iftekharul Islamcd789502017-04-19 14:37:55 -050018 'dataService',
19 function($scope, $window, APIUtils, dataService){
20 $scope.dataService = dataService;
21 }
22 ]
23 );
24
25})(angular);