arrowdb
Version:
Appcelerator ArrowDB SDK for NodeJS
29 lines (27 loc) • 396 B
JavaScript
var arrowDBObject = {
GeoFences: {
restObject: 'geo_fences',
methods: {
count: {
httpMethod: 'GET'
},
create: {
httpMethod: 'POST'
},
delete: {
httpMethod: 'DELETE'
},
query: {
httpMethod: 'GET'
},
remove: {
httpMethod: 'DELETE',
restMethod: 'delete'
},
update: {
httpMethod: 'PUT'
}
}
}
};
module.exports = arrowDBObject;