mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-25 18:34:45 +00:00
🐛 fix bans
This commit is contained in:
Generated
BIN
Binary file not shown.
+1
-1
@@ -33,7 +33,7 @@
|
||||
},
|
||||
"homepage": "https://github.com/fosscord/fosscord-api#readme",
|
||||
"dependencies": {
|
||||
"@fosscord/server-util": "^1.3.45",
|
||||
"@fosscord/server-util": "^1.3.46",
|
||||
"@types/jest": "^26.0.22",
|
||||
"@types/json-schema": "^7.0.7",
|
||||
"ajv": "^8.4.0",
|
||||
|
||||
@@ -16,7 +16,7 @@ router.get("/", async (req: Request, res: Response) => {
|
||||
const guild = await GuildModel.exists({ id: guild_id });
|
||||
if (!guild) throw new HTTPError("Guild not found", 404);
|
||||
|
||||
var bans = await BanModel.find({ guild_id: guild_id }, { user: true, reason: true }).exec();
|
||||
var bans = await BanModel.find({ guild_id: guild_id }, { user_id: true, reason: true }).exec();
|
||||
return res.json(toObject(bans));
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user