mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-09 12:12:35 +01:00
Fix updating vanity URL & retrieving widget.json
This commit is contained in:
parent
f00a31540e
commit
73b57750a0
@ -108,30 +108,23 @@ router.patch(
|
||||
});
|
||||
|
||||
if (!guild.features.includes("ALIASABLE_NAMES")) {
|
||||
await Invite.update(
|
||||
{ guild_id },
|
||||
{
|
||||
code: code,
|
||||
},
|
||||
);
|
||||
|
||||
return res.json({ code });
|
||||
await Invite.delete({ guild_id, vanity_url: true });
|
||||
}
|
||||
|
||||
await Invite.create({
|
||||
vanity_url: true,
|
||||
code: code,
|
||||
code,
|
||||
temporary: false,
|
||||
uses: 0,
|
||||
max_uses: 0,
|
||||
max_age: 0,
|
||||
created_at: new Date(),
|
||||
expires_at: new Date(),
|
||||
guild_id: guild_id,
|
||||
channel_id: id,
|
||||
flags: 0,
|
||||
}).save();
|
||||
|
||||
return res.json({ code: code });
|
||||
return res.json({ code });
|
||||
},
|
||||
);
|
||||
|
||||
|
@ -57,6 +57,10 @@ router.get(
|
||||
where: { id: guild_id },
|
||||
select: {
|
||||
channel_ordering: true,
|
||||
widget_channel_id: true,
|
||||
widget_enabled: true,
|
||||
presence_count: true,
|
||||
name: true,
|
||||
},
|
||||
});
|
||||
if (!guild.widget_enabled) throw DiscordApiErrors.EMBED_DISABLED;
|
||||
@ -82,6 +86,7 @@ router.get(
|
||||
created_at: new Date(),
|
||||
guild_id,
|
||||
channel_id: guild.widget_channel_id,
|
||||
flags: 0,
|
||||
}).save();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user