Changed searching to be simplier since I don't think we'll need much more

This commit is contained in:
KimLS
2017-01-23 00:16:29 -08:00
parent 40edbc3b64
commit 73bd88dc62
3 changed files with 28 additions and 97 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
var endpoint = require('./endpoint.js');
var RegisterAPI = function(app, api) {
endpoint.Register(app, api, 'item', 'items', 'id');
endpoint.Register(app, api, 'item', 'items', 'id', ['name']);
};
module.exports = {