Skip to content

Commit

Permalink
chore: remove deprecated /connect/authenticate route (#207)
Browse files Browse the repository at this point in the history
## Change Summary

Remove deprecated `/connect/authenticate` relay route.

## Merge Checklist

_Choose all relevant options below by adding an `x` now or at any time
before submitting for review_

- [x] PR title adheres to the [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/) standard
- [ ] PR has a changeset
- [x] PR has been tagged with a change label(s) (i.e. documentation,
feature, bugfix, or chore)
- [x] PR includes documentation if necessary
- [x] All commits have been signed
  • Loading branch information
horsefacts authored Aug 20, 2024
1 parent d3d9e63 commit e50cb04
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions apps/relay/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ export class RelayServer {
}
});

protectedRoutes.post<{
Body: AuthenticateRequest;
}>("/connect/authenticate", { schema: { body: authenticateRequestSchema } }, authenticate);

protectedRoutes.post<{
Body: AuthenticateRequest;
}>("/channel/authenticate", { schema: { body: authenticateRequestSchema } }, authenticate);
Expand Down

0 comments on commit e50cb04

Please sign in to comment.