woodpecker/server/app/scripts/services/remote.js
2014-07-12 19:01:58 -07:00

13 lines
No EOL
279 B
JavaScript

'use strict';
// Service facilitates interaction with the remote API.
angular.module('app').service('remotes', ['$http', function($http) {
this.get = function() {
return $http.get('/v1/remotes');
};
this.getLogins = function() {
return $http.get('/v1/logins');
};
}]);