docs: Remove TODOs

This commit is contained in:
Alexander Polynomdivision 2018-10-18 17:36:32 +02:00
parent 857eea777f
commit f22008784c
2 changed files with 0 additions and 9 deletions

View File

@ -63,7 +63,6 @@ userRouter.get("/logout", async (req: LRequest, res) => {
userRouter.get("/vocab", async (req: LRequest, res) => {
// Get the user
const { db, token } = req;
// TODO: if (!user)
const user = await userFromSession(token, db);
const { vocabMetadata } = await db.collection("users").findOne({
@ -105,7 +104,6 @@ export enum VocabType {
// Gets the user's review queue
userRouter.get("/queue", async (req: LRequest, res) => {
// TODO: if (user)
const { token, db } = req;
let user = Object.assign({}, await userFromSession(token, db));
@ -152,7 +150,6 @@ userRouter.get("/queue", async (req: LRequest, res) => {
// Get ot set the last review results
userRouter.get("/lastReview", async (req: LRequest, res) => {
// TODO: if(user)
const { token, db } = req;
const user = await userFromSession(token, db);
@ -230,7 +227,6 @@ userRouter.post("/lastReview", async (req: LRequest, res) => {
// Returns the next level (level + 1) or the current level, if no higher level
// can be found
async function getNextLevel(token: string, db: Db): Promise<any> {
// TODO: if(user)
const user = await userFromSession(token, db);
const { lastLevel } = user;
@ -282,7 +278,6 @@ userRouter.post("/level/:id", async (req: LRequest, res) => {
return;
}
// TODO: if (user)
const { token, db } = req;
const user = await userFromSession(token, db);
@ -335,7 +330,6 @@ userRouter.get("/dashboard", async (req: LRequest, res) => {
const { db, token } = req;
// Get the user
// TODO: if (user)
const user = await userFromSession(token, db);
const { classId } = user;
@ -386,7 +380,6 @@ userRouter.post("/showWelcome", async (req: LRequest, res) => {
}
// Find the user
// TODO: if (user)
const user = await userFromSession(token, db);
await db.collection("users").updateOne({
@ -416,7 +409,6 @@ userRouter.post("/score", async (req: LRequest, res) => {
return;
}
// TODO: if (user)
const user = await userFromSession(token, db);
// Update the score
db.collection("users").updateOne({

View File

@ -258,7 +258,6 @@ const password = encodeURIComponent(env["LATEINICUS_USER_PW"]);
error: "200",
data: userData,
});
} catch (err) {
console.log("Could not resolve login promise!", err);