arrowdb
Version:
Appcelerator ArrowDB SDK for NodeJS
35 lines (33 loc) • 487 B
JavaScript
var arrowDBObject = {
Statuses: {
methods: {
batchDelete: {
httpMethod: 'DELETE',
restMethod: 'batch_delete'
},
count: {
httpMethod: 'GET'
},
create: {
httpMethod: 'POST'
},
delete: {
httpMethod: 'DELETE'
},
remove: {
httpMethod: 'DELETE',
restMethod: 'delete'
},
query: {
httpMethod: 'GET'
},
show: {
httpMethod: 'GET'
},
update: {
httpMethod: 'PUT'
}
}
}
};
module.exports = arrowDBObject;