summaryrefslogtreecommitdiffstats
path: root/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/express/connection-sharing/routes.js
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/express/connection-sharing/routes.js')
-rw-r--r--common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/express/connection-sharing/routes.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/express/connection-sharing/routes.js b/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/express/connection-sharing/routes.js
deleted file mode 100644
index 35e4f8f..0000000
--- a/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/examples/express/connection-sharing/routes.js
+++ /dev/null
@@ -1,20 +0,0 @@
-
-var model = require('./modelA');
-
-exports.home = function(req, res, next) {
- model.find(function(err, docs) {
- if (err) return next(err);
- res.send(docs);
- });
-};
-
-exports.modelName = function(req, res) {
- res.send('my model name is ' + model.modelName);
-};
-
-exports.insert = function(req, res, next) {
- model.create({name: 'inserting ' + Date.now()}, function(err, doc) {
- if (err) return next(err);
- res.send(doc);
- });
-};