randydev commited on
Commit
448cdce
·
verified ·
1 Parent(s): 6bd4e50

Update index.js

Browse files
Files changed (1) hide show
  1. index.js +3 -3
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: null,
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: null,
413
  createdAt: new Date(),
414
- expiresAt: null,
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,