randydev commited on
Commit
b497a81
·
verified ·
1 Parent(s): 1cff331

Update index.js

Browse files
Files changed (1) hide show
  1. index.js +1 -4
index.js CHANGED
@@ -137,10 +137,7 @@ app.get('/testdb', async (req, res) => {
137
  const collection = dbClient.collection("api_keys");
138
  try {
139
  const result = await collection.find({}).toArray();
140
- for (const data of result) {
141
- const ownerCount = data.owner === undefined ? 0 : 1;
142
- res.json({ count: ownerCount });
143
- }
144
  } catch (error) {
145
  console.error("Failed to get data from DB: " + error);
146
  res.status(500).send("Error fetching data from database.");
 
137
  const collection = dbClient.collection("api_keys");
138
  try {
139
  const result = await collection.find({}).toArray();
140
+ res.json({ count: result.owner });
 
 
 
141
  } catch (error) {
142
  console.error("Failed to get data from DB: " + error);
143
  res.status(500).send("Error fetching data from database.");