blob: 37c7ffbe97fa4ca054c33f642e4264bfc77f28f8 [file] [log] [blame]
/**
* Controller for file
*
* @module app/configuration
* @exports fileController
* @name fileController
*/
window.angular && (function(angular) {
'use strict';
angular
.module('app.configuration')
.controller('fileController', [
'$scope',
'$window',
'APIUtils',
'dataService',
function($scope, $window, APIUtils, dataService) {
$scope.dataService = dataService;
}
]);
})(angular);