blob: d250ac7eb81736751cac408a31f117fbcea272b4 [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
Andrew Geisslerba5e3f32018-05-24 10:58:00 -07009window.angular && (function(angular) {
10 'use strict';
Iftekharul Islamcd789502017-04-19 14:37:55 -050011
Andrew Geisslerba5e3f32018-05-24 10:58:00 -070012 angular
13 .module('app.configuration')
14 .controller('securityController', [
15 '$scope',
16 '$window',
17 'APIUtils',
18 'dataService',
19 function($scope, $window, APIUtils, dataService) {
20 $scope.dataService = dataService;
21 }
22 ]);
Iftekharul Islamcd789502017-04-19 14:37:55 -050023
24})(angular);