|
|
@@ -31,7 +31,7 @@ export default [
|
|
|
{
|
|
|
path: "/teacher",
|
|
|
component: () => import("@/layouts/HomeLayout"),
|
|
|
- meta: { requiresAuth: true },
|
|
|
+ meta: { requiresAuth: false },
|
|
|
children: [
|
|
|
{
|
|
|
name: TEACHER,
|
|
|
@@ -43,7 +43,7 @@ export default [
|
|
|
{
|
|
|
path: "/course-teacher/:courseId",
|
|
|
component: () => import("@/layouts/courseLayouts/TeacherCourseLayout.vue"),
|
|
|
- meta: { requiresAuth: true },
|
|
|
+ meta: { requiresAuth: false },
|
|
|
children: [
|
|
|
{
|
|
|
name: TEACHER_COURSE,
|
|
|
@@ -55,7 +55,7 @@ export default [
|
|
|
{
|
|
|
path: "/course-student/:courseId",
|
|
|
component: () => import("@/layouts/courseLayouts/StudentCourseLayout.vue"),
|
|
|
- meta: { requiresAuth: true },
|
|
|
+ meta: { requiresAuth: false },
|
|
|
children: [
|
|
|
{
|
|
|
name: STUDENT_COURSE,
|
|
|
@@ -83,7 +83,7 @@ export default [
|
|
|
{
|
|
|
path: "/student",
|
|
|
component: () => import("@/layouts/HomeLayout"),
|
|
|
- meta: { requiresAuth: true },
|
|
|
+ meta: { requiresAuth: false },
|
|
|
children: [
|
|
|
{
|
|
|
name: STUDENT,
|