summary refs log tree commit diff
path: root/api/src/routes/applications/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/routes/applications/index.ts')
-rw-r--r--api/src/routes/applications/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/routes/applications/index.ts b/api/src/routes/applications/index.ts
index c9be1131..41ce35b5 100644
--- a/api/src/routes/applications/index.ts
+++ b/api/src/routes/applications/index.ts
@@ -11,7 +11,7 @@ export interface ApplicationCreateSchema {
 
 router.get("/", route({}), async (req: Request, res: Response) => {
 	//TODO
-	let results = await Application.find({where: {owner: {id: req.user_id}}, relations: ["owner"] });
+	let results = await Application.find({where: {owner: {id: req.user_id}}, relations: ["owner", "bot"] });
 	res.json(results).status(200);
 });