Record Payments Intents

This commit is contained in:
aeroreyna
2022-01-23 20:16:50 -08:00
parent f147bf70fd
commit cb056a078a
3 changed files with 59 additions and 7 deletions

View File

@@ -5,6 +5,7 @@ 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 getDB = new Promise((resolve, reject) => {
@@ -107,6 +108,7 @@ const getDB = new Promise((resolve, reject) => {
postDB(DB);
profileDB(DB);
paymentDB(DB);
resolve(DB);
});