Bunch small things: Notifs for react, subsplash...

This commit is contained in:
aeroreyna
2022-12-28 22:54:19 -05:00
parent 6b6f263821
commit 1f3cc06470
10 changed files with 686 additions and 295 deletions

View File

@@ -5,7 +5,8 @@ const DBName = "EMI_SOCIAL";
const mongoUrl = process.env.MONGO_URL;
const postDB = require("./dbTools/post.js");
const profileDB = require("./dbTools/profile.js");
const paymentDB = require("./dbTools/payments.js")
const paymentDB = require("./dbTools/payments.js");
const loggerDB = require("./dbTools/logger.js");
const getDB = new Promise((resolve, reject) => {
@@ -114,6 +115,7 @@ const getDB = new Promise((resolve, reject) => {
postDB(DB);
profileDB(DB);
paymentDB(DB);
loggerDB(DB);
resolve(DB);
});