Update index.js
Browse files
index.js
CHANGED
@@ -401,7 +401,7 @@ app.post("/api/v1/key/api-key-ban", authenticateApiKey, apiLimiter, async (req,
|
|
401 |
|
402 |
if (!existingUser || !existingUserTwo) {
|
403 |
const userDocument = {
|
404 |
-
key:
|
405 |
createdAt: new Date(),
|
406 |
owner: userIdNumber,
|
407 |
type: "free",
|
@@ -409,9 +409,9 @@ app.post("/api/v1/key/api-key-ban", authenticateApiKey, apiLimiter, async (req,
|
|
409 |
username: null,
|
410 |
};
|
411 |
const userDocumentTwo = new ApiKey({
|
412 |
-
key:
|
413 |
createdAt: new Date(),
|
414 |
-
expiresAt:
|
415 |
owner: userIdNumber,
|
416 |
type: "premium",
|
417 |
is_banned: true,
|
|
|
401 |
|
402 |
if (!existingUser || !existingUserTwo) {
|
403 |
const userDocument = {
|
404 |
+
key: "banned",
|
405 |
createdAt: new Date(),
|
406 |
owner: userIdNumber,
|
407 |
type: "free",
|
|
|
409 |
username: null,
|
410 |
};
|
411 |
const userDocumentTwo = new ApiKey({
|
412 |
+
key: "banned",
|
413 |
createdAt: new Date(),
|
414 |
+
expiresAt: 10,
|
415 |
owner: userIdNumber,
|
416 |
type: "premium",
|
417 |
is_banned: true,
|