feat(web): add authenticated app shell
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
export const API_ROUTES = {
|
||||
auth: {
|
||||
sendOtp: '/api/v1/auth/otp/send',
|
||||
emailSession: '/api/v1/auth/email-session',
|
||||
refreshSession: '/api/v1/auth/sessions/refresh',
|
||||
deleteSession: '/api/v1/auth/sessions',
|
||||
},
|
||||
users: {
|
||||
profile: '/api/v1/users/me/profile',
|
||||
},
|
||||
points: {
|
||||
balance: '/api/v1/points/balance',
|
||||
},
|
||||
notifications: {
|
||||
unreadCount: '/api/v1/notifications/unread-count',
|
||||
},
|
||||
agent: {
|
||||
history: '/api/v1/agent/history',
|
||||
},
|
||||
} as const;
|
||||
Reference in New Issue
Block a user