arrowdb
Version:
Appcelerator ArrowDB SDK for NodeJS
31 lines (29 loc) • 408 B
JavaScript
var arrowDBObject = {
Friends: {
methods: {
add: {
httpMethod: 'POST'
},
approve: {
httpMethod: 'PUT'
},
query: {
httpMethod: 'GET'
},
delete: {
httpMethod: 'DELETE',
restMethod: 'remove'
},
remove: {
httpMethod: 'DELETE'
},
requests: {
httpMethod: 'GET'
},
search: {
httpMethod: 'GET'
}
}
}
};
module.exports = arrowDBObject;