Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 1 | /** |
| 2 | * Controller for security |
| 3 | * |
| 4 | * @module app/configuration |
| 5 | * @exports securityController |
| 6 | * @name securityController |
Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | window.angular && (function (angular) { |
| 10 | 'use strict'; |
| 11 | |
| 12 | angular |
| 13 | .module('app.configuration') |
| 14 | .controller('securityController', [ |
Gunnar Mills | eedefd3 | 2018-02-28 17:02:34 -0600 | [diff] [blame] | 15 | '$scope', |
| 16 | '$window', |
| 17 | 'APIUtils', |
Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 18 | 'dataService', |
| 19 | function($scope, $window, APIUtils, dataService){ |
| 20 | $scope.dataService = dataService; |
| 21 | } |
| 22 | ] |
| 23 | ); |
| 24 | |
| 25 | })(angular); |