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