initial commit for mobile app

This commit is contained in:
daniel31x13
2024-01-12 15:57:49 -05:00
parent 834d25a99e
commit 7109620dc7
79 changed files with 2239 additions and 73 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ export default async function postUser(
},
});
return res.status(201).json({ response: "User successfully created." });
return res.status(200).json({ response: "User successfully created." });
} else if (checkIfUserExists) {
return res.status(400).json({
response: `${emailEnabled ? "Email" : "Username"} already exists.`,