checkin, with customer model

This commit is contained in:
2017-01-21 14:32:40 -07:00
commit 07202a8c60
21 changed files with 2667 additions and 0 deletions

8
server/boot/root.js Normal file
View File

@@ -0,0 +1,8 @@
'use strict';
module.exports = function(server) {
// Install a `/` route that returns server status
var router = server.loopback.Router();
router.get('/', server.loopback.status());
server.use(router);
};