summary refs log tree commit diff
path: root/src/routes/guilds/index.ts
diff options
context:
space:
mode:
authorstefan080106 <stefan.arnold.programmierung@gmail.com>2021-04-24 01:25:20 +0200
committerstefan080106 <stefan.arnold.programmierung@gmail.com>2021-04-24 01:25:20 +0200
commit07fb93a4e6b14fa5f2ab890255d0eb054414832f (patch)
treee3b13f658a90b898e6a541b77ddcc8eb8a89fde9 /src/routes/guilds/index.ts
parentUpdate index.ts (diff)
downloadserver-07fb93a4e6b14fa5f2ab890255d0eb054414832f.tar.xz
:construction: add guild channel delete route
Diffstat (limited to 'src/routes/guilds/index.ts')
-rw-r--r--src/routes/guilds/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/routes/guilds/index.ts b/src/routes/guilds/index.ts

index 6d9b7c1b..bd491e86 100644 --- a/src/routes/guilds/index.ts +++ b/src/routes/guilds/index.ts
@@ -9,6 +9,8 @@ import { addMember } from "../../util/Member"; const router: Router = Router(); +//TODO: create default channel + router.post("/", check(GuildCreateSchema), async (req: Request, res: Response) => { const body = req.body as GuildCreateSchema;