mirror of
https://github.com/Foltik/Shimapan
synced 2025-01-03 23:18:48 -05:00
Update key service to use (err, data) callbacks
This commit is contained in:
parent
a14158dd3c
commit
f0a7c05174
@ -1,28 +1,7 @@
|
|||||||
var angular = require('angular');
|
var angular = require('angular');
|
||||||
|
|
||||||
angular.module('KeySvc', []).service('KeyService', ['$http', function ($http) {
|
angular.module('KeySvc', []).service('KeyService', ['$http', function($http) {
|
||||||
this.getAllKeys = function (cb) {
|
this.createKey = (identifier, scope, cb) =>
|
||||||
$http({
|
|
||||||
method: 'GET',
|
|
||||||
url: '/api/keys/get'
|
|
||||||
}).then(function (res) {
|
|
||||||
cb(res.data);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
this.deleteKey = function (key, cb) {
|
|
||||||
$http({
|
|
||||||
method: 'POST',
|
|
||||||
url: '/api/keys/delete',
|
|
||||||
data: {
|
|
||||||
key: key
|
|
||||||
}
|
|
||||||
}).then(function (res) {
|
|
||||||
cb(res.data);
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
this.createKey = function (identifier, scope, cb) {
|
|
||||||
$http({
|
$http({
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
url: '/api/keys/create',
|
url: '/api/keys/create',
|
||||||
@ -30,8 +9,32 @@ angular.module('KeySvc', []).service('KeyService', ['$http', function ($http) {
|
|||||||
identifier: identifier,
|
identifier: identifier,
|
||||||
scope: scope
|
scope: scope
|
||||||
}
|
}
|
||||||
}).then(function(res) {
|
}).then(res => {
|
||||||
cb(res.data);
|
cb(null, res.data)
|
||||||
|
}).catch(err => {
|
||||||
|
cb(err);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.deleteKey = (key, cb) =>
|
||||||
|
$http({
|
||||||
|
method: 'POST',
|
||||||
|
url: '/api/keys/delete',
|
||||||
|
data: {
|
||||||
|
key: key
|
||||||
|
}
|
||||||
|
}).then(res => {
|
||||||
|
cb(null, res.data);
|
||||||
|
}).catch(err => {
|
||||||
|
cb(err);
|
||||||
|
});
|
||||||
|
|
||||||
|
this.getAllKeys = cb =>
|
||||||
|
$http({
|
||||||
|
method: 'GET',
|
||||||
|
url: '/api/keys/get'
|
||||||
|
}).then(res => {
|
||||||
|
cb(null, res.data);
|
||||||
|
}).catch(err => {
|
||||||
|
cb(err);
|
||||||
});
|
});
|
||||||
};
|
|
||||||
}]);
|
}]);
|
||||||
|
Loading…
Reference in New Issue
Block a user