diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-08-12 11:36:39 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-08-13 21:57:51 +0200 |
commit | 10bd81274722823f875ba31eaf5fc670bfb22ceb (patch) | |
tree | 9c622935ca99e791f7ee1e27ef67c9d23388012a /api/src/routes/guilds/#guild_id/templates.ts | |
parent | Move some invite defaults into class (diff) | |
download | server-10bd81274722823f875ba31eaf5fc670bfb22ceb.tar.xz |
Split schemas into files in util
Diffstat (limited to 'api/src/routes/guilds/#guild_id/templates.ts')
-rw-r--r-- | api/src/routes/guilds/#guild_id/templates.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/api/src/routes/guilds/#guild_id/templates.ts b/api/src/routes/guilds/#guild_id/templates.ts index 3d14de41..9c79692d 100644 --- a/api/src/routes/guilds/#guild_id/templates.ts +++ b/api/src/routes/guilds/#guild_id/templates.ts @@ -24,16 +24,6 @@ const TemplateGuildProjection: (keyof Guild)[] = [ "icon" ]; -export interface TemplateCreateSchema { - name: string; - description?: string; -} - -export interface TemplateModifySchema { - name: string; - description?: string; -} - router.get("/", route({}), async (req: Request, res: Response) => { const { guild_id } = req.params; |