Update index.js
Browse files
index.js
CHANGED
@@ -143,7 +143,7 @@ app.post('/v1/generate-key', async (req, res) => {
|
|
143 |
const existingUser = await collection.findOne({ owner: userIdNumber });
|
144 |
|
145 |
if (existingUser) {
|
146 |
-
return res.status(200).json({ apiKey:
|
147 |
}
|
148 |
const userDocument = {
|
149 |
key: newKey,
|
|
|
143 |
const existingUser = await collection.findOne({ owner: userIdNumber });
|
144 |
|
145 |
if (existingUser) {
|
146 |
+
return res.status(200).json({ apiKey: existingUser.key });
|
147 |
}
|
148 |
const userDocument = {
|
149 |
key: newKey,
|