diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-02-14 23:22:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-14 23:22:32 +0000 |
commit | 1e3b7feccfb59c70a97ed51b26bee8c6ea33348f (patch) | |
tree | 7f6c6979317cf3634b734dd06ccf68dfc2ec817f /src/routes.ts | |
parent | ab4be7a9e144cbb658385976f21394a036043cb8 (diff) | |
download | voidsky-1e3b7feccfb59c70a97ed51b26bee8c6ea33348f.tar.zst |
Screen for searching user's posts (#7622)
* search user's posts screen * custom placeholder copy if self * navigate to /profile/:handle * add name to title * show header on desktop
Diffstat (limited to 'src/routes.ts')
-rw-r--r-- | src/routes.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/routes.ts b/src/routes.ts index 576ac92d1..568f88bb8 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -19,6 +19,7 @@ export const router = new Router({ ProfileFollowers: '/profile/:name/followers', ProfileFollows: '/profile/:name/follows', ProfileKnownFollowers: '/profile/:name/known-followers', + ProfileSearch: '/profile/:name/search', ProfileList: '/profile/:name/lists/:rkey', PostThread: '/profile/:name/post/:rkey', PostLikedBy: '/profile/:name/post/:rkey/liked-by', |