mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-20 06:08:21 +00:00
13 lines
279 B
JavaScript
13 lines
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');
|
||
|
};
|
||
|
}]);
|