notherbase-fs 1.5.2 → 1.5.3

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.
@@ -24,7 +24,6 @@ router.get(`/:page`, async function(req, res, next) {
24
24
  user: foundUser,
25
25
  query: req.query
26
26
  });
27
-
28
27
  }
29
28
  else {
30
29
  next();
package/notherbase-fs.js CHANGED
@@ -100,9 +100,9 @@ class NotherBaseFS {
100
100
 
101
101
  this.app.use("/the-front", controllers.front);
102
102
 
103
- this.app.use("/", controllers.authCheck, controllers.explorer);
104
-
105
103
  this.app.use("/", controllers.pages);
104
+
105
+ this.app.use("/", controllers.authCheck, controllers.explorer);
106
106
 
107
107
  // start location
108
108
  this.app.get("/", function(req, res) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notherbase-fs",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Functions to help make developing for NotherBase easier.",
5
5
  "exports": "./notherbase-fs.js",
6
6
  "scripts": {