woodpecker/server/app/scripts/services/remote.js
2014-09-30 00:43:50 -07:00

13 lines
No EOL
281 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('/api/remotes');
};
this.getLogins = function() {
return $http.get('/api/logins');
};
}]);