summary refs log tree commit diff
path: root/api/src/routes/experiments.ts
diff options
context:
space:
mode:
authorFeatyre <twooter.0g179@simplelogin.co>2022-01-26 08:58:36 +0800
committerFeatyre <twooter.0g179@simplelogin.co>2022-01-26 08:58:36 +0800
commitb01a26cdceb2840b44da7033e2f6615a27273595 (patch)
treef133ebfaf2c56e2e9fa1bd1cbb57bb7cf0c1a53e /api/src/routes/experiments.ts
parentchange line (diff)
downloadserver-b01a26cdceb2840b44da7033e2f6615a27273595.tar.xz
Dev portal + categories load db
Diffstat (limited to 'api/src/routes/experiments.ts')
-rw-r--r--api/src/routes/experiments.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/routes/experiments.ts b/api/src/routes/experiments.ts

index 966ed99c..7be86fb8 100644 --- a/api/src/routes/experiments.ts +++ b/api/src/routes/experiments.ts
@@ -5,7 +5,7 @@ const router = Router(); router.get("/", route({}), (req: Request, res: Response) => { // TODO: - res.send({ fingerprint: "", assignments: [] }); + res.send({ fingerprint: "", assignments: [], guild_experiments:[] }); }); export default router;