harness-drone/server/app/scripts/services/user.js
Brad Rydzewski 77daa5743f replaced Chrome browser with PhantomJS in karma tests
moved header to parent page, removed from templates
2014-06-21 19:40:21 -07:00

7 lines
No EOL
154 B
JavaScript

'use strict';
angular.module('app').service('users', ['$http', function($http) {
this.getCurrent = function() {
return $http.get('/v1/user');
};
}]);