/[sudobot]/branches/2.x/src/api/routes/roles.ts
ViewVC logotype

Annotation of /branches/2.x/src/api/routes/roles.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 492 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 import { Request, Response } from "express";
2     import DiscordClient from "../../client/Client";
3     import auth from "../Auth";
4     import guildAuth from "../GuildAuth";
5     import { Route } from "../Router";
6    
7     export default <Route> {
8     path: '/roles/:guild',
9     middleware: [guildAuth],
10     async get(req: Request, res: Response) {
11     const guild = await DiscordClient.client.guilds.fetch(req.params.guild);
12     const roles = await guild.roles.cache.toJSON();
13     res.send(roles);
14     }
15     };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26