diff options
author | ChrisChrome <christophercookman@gmail.com> | 2022-08-10 03:52:03 -0600 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-12-18 22:43:14 +1100 |
commit | 455d7432cfc8384bbbea4405cf7f55e0afb0e2b0 (patch) | |
tree | 1c86d2a40d7ca9f67eb4f549117f1a2bb8bc65bf /src/api/routes/applications/#id/index.ts | |
parent | Add basic developer panel functionality - doesn't work yet (diff) | |
download | server-455d7432cfc8384bbbea4405cf7f55e0afb0e2b0.tar.xz |
It works now... I guess
Co-authored-by: TheArcaneBrony <myrainbowdash949@gmail.com>
Diffstat (limited to 'src/api/routes/applications/#id/index.ts')
-rw-r--r-- | src/api/routes/applications/#id/index.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/api/routes/applications/#id/index.ts b/src/api/routes/applications/#id/index.ts index be8c3ba4..a16b18a9 100644 --- a/src/api/routes/applications/#id/index.ts +++ b/src/api/routes/applications/#id/index.ts @@ -7,7 +7,6 @@ const router: Router = Router(); router.get("/", route({}), async (req: Request, res: Response) => { //TODO let results = await Application.findOne({where: {id: req.params.id}, relations: ["owner", "bot"] }); - //debugger; res.json(results).status(200); }); |