@ozdao/prometheus-framework 0.2.86 → 0.2.87

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ozdao/prometheus-framework",
3
- "version": "0.2.86",
3
+ "version": "0.2.87",
4
4
  "description": "Web3 Framework focused on user experience and ease of development.",
5
5
  "author": "OZ DAO <hello@ozdao.dev>",
6
6
  "license": "GPL-3.0-or-later",
@@ -1,4 +1,4 @@
1
- // Factories
1
+ // Factories
2
2
  const controllerFactory = require("../controllers/auth.controller");
3
3
  const controllerFactoryTwofa = require("../controllers/twofa.controller");
4
4
  // Middlewares
@@ -8,7 +8,7 @@ module.exports = function(app, db, origins) {
8
8
  const controller = controllerFactory(db);
9
9
  const controllerTwofa = controllerFactoryTwofa(db);
10
10
 
11
- const { verifySignUp, verifyUser } = middlewareFactory(db)
11
+ const { verifySignUp, verifyUser } = middlewareFactory(db);
12
12
 
13
13
  app.post(
14
14
  "/api/auth/signup",
@@ -4,7 +4,6 @@ const controllerFactory = require("../controllers/memberships.controller");
4
4
  module.exports = function(app, db) {
5
5
  const controller = controllerFactory(db);
6
6
 
7
-
8
7
  app.get(
9
8
  "/api/memberships",
10
9
  controller.read