Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

## Phase 3 — Social Features

- [ ] Shareable invite links (not just email invites)
- [~] Shareable invite links (not just email invites) — schema, API, and UI implemented
- [ ] Ally (friend) system with requests
- [ ] User blocking
- [ ] Privacy settings
Expand Down
2 changes: 2 additions & 0 deletions apps/api/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import index from "@/routes/index.route"
import channelsRouter from "@/routes/v1/channels/index"
import dmsRouter from "@/routes/v1/dms/index"
import guildsRouter from "@/routes/v1/guilds/index"
import invitesRouter from "@/routes/v1/invites/index"
import uploadsRouter from "@/routes/v1/uploads/index"
import waitlistRouter from "@/routes/waitlist/index"

Expand Down Expand Up @@ -33,6 +34,7 @@ const routes = app
.route("/", waitlistRouter)
.route("/v1", channelsRouter)
.route("/v1", guildsRouter)
.route("/v1", invitesRouter)
.route("/v1", dmsRouter)
.route("/v1", uploadsRouter)

Expand Down
Loading