-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoutes.ts
35 lines (18 loc) · 912 Bytes
/
Routes.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
export const HOME_PAGE = "/";
export const LOGIN_PAGE = "/login";
export const SIGNUP_PAGE = "/signup";
export const SIGNUP_SECONDARY = "/signup/more-info";
export const SIGNUP_EMERGENCY_CONTACT = "/signup/emergency-contact";
export const CALENDAR_PAGE = "/calendar";
export const EDIT_TEAM_PAGE = "/edit-team";
export const DISPLAY_ENTITY_PAGE = "/entity";
export const CREATE_ENTITY_PAGE = "/entity/create";
export const UPDATE_ENTITY_PAGE = "/entity/update";
export const DISPLAY_SIMPLE_ENTITY_PAGE = "/simpleEntity";
export const CREATE_SIMPLE_ENTITY_PAGE = "/simpleEntity/create";
export const UPDATE_SIMPLE_ENTITY_PAGE = "/simpleEntity/update";
export const HOOKS_PAGE = "/hooks";
export const SHIFTS_PAGE = "/shifts";
export const VOLUNTEER_DASHBOARD_PAGE = "/volunteer-dashboard";
export const PLATFORM_SIGNUP_REQUESTS = "/platform-signup-requests";
export const INVITE_PAGE = "/invite"