mirror of
https://github.com/harness/drone.git
synced 2025-05-08 19:50:15 +08:00
7 lines
154 B
JavaScript
7 lines
154 B
JavaScript
'use strict';
|
|
|
|
angular.module('app').service('users', ['$http', function($http) {
|
|
this.getCurrent = function() {
|
|
return $http.get('/v1/user');
|
|
};
|
|
}]); |