notherbase-fs 4.0.11 → 4.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/notherbase-fs.js +2 -1
  2. package/package.json +1 -1
package/notherbase-fs.js CHANGED
@@ -62,7 +62,7 @@ class NotherBaseFS {
62
62
  }
63
63
  else req.hosting = split[0];
64
64
  console.log(req.hosting);
65
- console.log(req.session);
65
+
66
66
 
67
67
 
68
68
  req.contentPath = this.bases[req.hosting].directory;
@@ -89,6 +89,7 @@ class NotherBaseFS {
89
89
 
90
90
  //provide database access and etc to use in routes
91
91
  this.app.use((req, res, next) => {
92
+ console.log(req.session);
92
93
  req.globals = globals;
93
94
  req.db = Models;
94
95
  req.lock = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notherbase-fs",
3
- "version": "4.0.11",
3
+ "version": "4.0.12",
4
4
  "description": "Functions to help make developing for NotherBase easier.",
5
5
  "exports": "./notherbase-fs.js",
6
6
  "scripts": {