1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-30 10:11:23 +02:00
woodpecker/server/app/scripts/services/remote.js

13 lines
281 B
JavaScript
Raw Normal View History

2014-07-13 05:01:58 +03:00
'use strict';
// Service facilitates interaction with the remote API.
angular.module('app').service('remotes', ['$http', function($http) {
this.get = function() {
2014-09-30 10:43:50 +03:00
return $http.get('/api/remotes');
2014-07-13 05:01:58 +03:00
};
this.getLogins = function() {
2014-09-30 10:43:50 +03:00
return $http.get('/api/logins');
2014-07-13 05:01:58 +03:00
};
}]);