
add new student info route and related components, update auth guard implementation and signup success redirect ```
14 lines
324 B
TypeScript
14 lines
324 B
TypeScript
const Paths = {
|
|
AuthHome: `/auth/home`,
|
|
AuthLogin: `/auth/login`,
|
|
AuthSignUp: `/auth/signup`,
|
|
SignUpSuccess: `/auth/sign_up_success`,
|
|
AuthorizedTest: `/auth/authorized_test`,
|
|
//
|
|
StudentInfo: `/auth/student_info/:id`,
|
|
GetStudentInfoLink: (id: string) => `/auth/student_info/${id}`,
|
|
//
|
|
};
|
|
|
|
export { Paths };
|