- Added the option to select an expiry date when an owner or dev creates a code

- Made it so the student's expiry date is the same as the admin when created by one
This commit is contained in:
Tiago Ribeiro
2023-10-11 11:20:28 +01:00
parent 25ce3bdf8f
commit a84edcd237
5 changed files with 132 additions and 20 deletions

View File

@@ -37,7 +37,7 @@ async function login(req: NextApiRequest, res: NextApiResponse) {
return;
}
const codeData = codeDocs[0].data() as {code: string; type: Type; creator: string};
const codeData = codeDocs[0].data() as {code: string; type: Type; creator: string; expiryDate: Date | null};
createUserWithEmailAndPassword(auth, email, password)
.then(async (userCredentials) => {
@@ -52,6 +52,7 @@ async function login(req: NextApiRequest, res: NextApiResponse) {
isFirstLogin: codeData.type === "student",
focus: "academic",
type: codeData.type,
subscriptionExpirationDate: codeData.expiryDate,
};
await setDoc(doc(db, "users", userId), user);