Rewrote search func

This commit is contained in:
KimLS
2017-01-24 18:58:37 -08:00
parent e715f5bfa2
commit b6feb258b1
5 changed files with 126 additions and 103 deletions
+11
View File
@@ -0,0 +1,11 @@
var endpoint = require('./endpoint.js');
var RegisterAPI = function(app, api) {
endpoint.Register(app, api, 'account', 'account', 'id');
//Can register custom controller actions here.
};
module.exports = {
'Register': RegisterAPI
}