blob: e3cfe6fc3c7c137afc7f899577508483e093354e [file] [log] [blame]
Michael Davisaeedf9e2017-04-06 14:35:56 -05001/**
2 * Controller for log
3 *
4 * @module app/overview
5 * @exports logController
6 * @name logController
7 * @version 0.1.0
8 */
9
10window.angular && (function (angular) {
11 'use strict';
12
13 angular
14 .module('app.overview')
15 .controller('sensorsOverviewController', [
16 '$scope',
17 '$window',
18 'APIUtils',
19 'dataService',
20 function($scope, $window, APIUtils, dataService, userModel){
21 $scope.dataService = dataService;
22 }
23 ]
24 );
25
26})(angular);