You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
686 B
21 lines
686 B
export const PATH = {
|
|
login: "/login",
|
|
forgetPassword: "/forget-password",
|
|
home: {
|
|
root: "/home",
|
|
teacher: "/home/teacher",
|
|
detailTeacher: "/home/teacher/detail/:teacherId",
|
|
admin: "/home/admin",
|
|
headmaster: "/home/headmaster",
|
|
detailSchool: "/home/detail-school/:schoolId",
|
|
detailGrade: "/home/detail-grade/:schoolId/:gradeId",
|
|
detailRoomEducation: "/home/detail-room-education/:idRoom",
|
|
educationDepartment: "/home/education-department",
|
|
outstandingTeacherByEducation: '/home/education-department/outstanding-teacher/:id'
|
|
},
|
|
criteria: {
|
|
root: "/criteria",
|
|
manage: "/criteria/manage",
|
|
setting: "/criteria/setting",
|
|
},
|
|
};
|
|
|