about summary refs log tree commit diff
path: root/src/routes.ts
blob: 5987177ef07354d7c07964fa6f956cb7a40e0442 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import {Router} from 'lib/routes/router'

export const router = new Router({
  Home: '/',
  Search: '/search',
  Notifications: '/notifications',
  Settings: '/settings',
  Profile: '/profile/:name',
  ProfileFollowers: '/profile/:name/followers',
  ProfileFollows: '/profile/:name/follows',
  PostThread: '/profile/:name/post/:rkey',
  PostUpvotedBy: '/profile/:name/post/:rkey/upvoted-by',
  PostRepostedBy: '/profile/:name/post/:rkey/reposted-by',
  Debug: '/sys/debug',
  Log: '/sys/log',
})