randydev commited on
Commit
99c40f3
·
verified ·
1 Parent(s): c14ea24

Update middleware/midware.js

Browse files
Files changed (1) hide show
  1. middleware/midware.js +3 -4
middleware/midware.js CHANGED
@@ -1,11 +1,10 @@
1
- import { Database, db } from '../database/database.js';
2
  import { rateLimit } from 'express-rate-limit';
3
- import * as uuid from 'uuid';
4
-
5
- const myUUID = uuid.v4();
6
 
7
  const authenticateApiKey = async (req, res, next) => {
8
  const apiKey = req.headers['x-api-key'];
 
 
9
  if (!apiKey) {
10
  return res.status(401).json({ error: 'API Key required' });
11
  }
 
1
+ import { Database } from '../database/database.js';
2
  import { rateLimit } from 'express-rate-limit';
 
 
 
3
 
4
  const authenticateApiKey = async (req, res, next) => {
5
  const apiKey = req.headers['x-api-key'];
6
+ const dbClient = new Database("AkenoXJs", "FastJsAPI");
7
+ const db = dbClient.collection()
8
  if (!apiKey) {
9
  return res.status(401).json({ error: 'API Key required' });
10
  }