arrowdb
Version:
Appcelerator ArrowDB SDK for NodeJS
44 lines (42 loc) • 693 B
JavaScript
var arrowDBObject = {
PhotoCollections: {
restObject: 'collections',
methods: {
batchDelete: {
httpMethod: 'DELETE',
restMethod: 'batch_delete'
},
count: {
httpMethod: 'GET'
},
create: {
httpMethod: 'POST'
},
delete: {
httpMethod: 'DELETE'
},
remove: {
httpMethod: 'DELETE',
restMethod: 'delete'
},
search: {
httpMethod: 'GET'
},
show: {
httpMethod: 'GET'
},
showPhotos: {
httpMethod: 'GET',
restMethod: 'show/photos'
},
showSubcollections: {
httpMethod: 'GET',
restMethod: 'show/subcollections'
},
update: {
httpMethod: 'PUT'
}
}
}
};
module.exports = arrowDBObject;