blob: 300cb37205465e7cb8710591e87a391981c67a01 [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);