diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-08-07 16:47:01 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-08-07 16:47:01 +1000 |
commit | a25a62aa76694fd4dd45e2a9405449eb4374deb6 (patch) | |
tree | 39ee569e01c03a49df013eb2cc665bcf60423db2 /src/api/routes/connections | |
parent | add login script (diff) | |
parent | Fix linter warnings in connections (diff) | |
download | server-a25a62aa76694fd4dd45e2a9405449eb4374deb6.tar.xz |
Merge branch 'master' of github.com:spacebarchat/server
Diffstat (limited to 'src/api/routes/connections')
-rw-r--r-- | src/api/routes/connections/#connection_name/#connection_id/refresh.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/connections/#connection_name/#connection_id/refresh.ts b/src/api/routes/connections/#connection_name/#connection_id/refresh.ts index 0d432c2b..d44cf314 100644 --- a/src/api/routes/connections/#connection_name/#connection_id/refresh.ts +++ b/src/api/routes/connections/#connection_name/#connection_id/refresh.ts @@ -22,7 +22,7 @@ const router = Router(); router.post("/", route({}), async (req: Request, res: Response) => { // TODO: - const { connection_name, connection_id } = req.params; + // const { connection_name, connection_id } = req.params; res.sendStatus(204); }); |