Skip to content

Commit

Permalink
Merge pull request #10 from pulsate-dev/add-bluesky-endpoint
Browse files Browse the repository at this point in the history
feat: add `/bluesky` endpoint
  • Loading branch information
m1sk9 authored May 2, 2024
2 parents c2b53a3 + a64cc20 commit 0ae01b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ Accessing an endpoint with no destination will return a [`404`](https://develope
| `/x` | Pulsate X |
| `/youtube` | Pulsate YouTube |
| `/discussions` | Pulsate Org Discussion |
| `/bluesky` | Pulsate Bluesky |
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,8 @@ app.get("/discussions", (c) => {
return c.redirect("https://github.com/orgs/pulsate-dev/discussions", 302);
});

app.get("/bluesky", (c) => {
return c.redirect("https://bsky.app/profile/pulsate.dev", 302);
});

export default app;

0 comments on commit 0ae01b0

Please sign in to comment.