Invitation only for signup

This commit is contained in:
Adolfo Reyna
2021-10-04 10:13:06 -07:00
parent e886b2bd57
commit 74f9108fa7
9 changed files with 192 additions and 10 deletions
+31
View File
@@ -0,0 +1,31 @@
const DB = require("./mongoDB.js");
const Post = require("./def/post.js");
let PromotionalPosts = {};
DB.getDB.then((DB)=>{
PromotionalPosts.PopularGroups = async () => {
let groups = DB.getGroups(false);
}
PromotionalPosts.PopularCourses = async () => {
}
PromotionalPosts.ImportantNews = async () => {
}
PromotionalPosts.IntroPost = async () => {
}
PromotionalPosts.continueWatchingCourse = async () => {
}
});
module.exports = PromotionalPosts;