mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2026-01-18 02:02:26 +01:00
Merge remote-tracking branch 'origin' into 3-semi-offline-room-finder
This commit is contained in:
@@ -28,6 +28,7 @@ const EditAdditionalModules = () =>
|
||||
const EditModules = () => import("../view/editCalendar/EditModules.vue");
|
||||
const CourseSelection = () => import("../view/CourseSelection.vue");
|
||||
const FreeRooms = () => import("../view/FreeRooms.vue");
|
||||
const CalenderViewer = () => import("../view/UserCalendar.vue");
|
||||
|
||||
import i18n from "../i18n";
|
||||
|
||||
@@ -36,7 +37,12 @@ const router = createRouter({
|
||||
routes: [
|
||||
{
|
||||
path: "/",
|
||||
name: "course-selection",
|
||||
name: "home",
|
||||
component: CourseSelection,
|
||||
},
|
||||
{
|
||||
path: "/calendar/create",
|
||||
name: "calendar-create",
|
||||
component: CourseSelection,
|
||||
},
|
||||
{
|
||||
@@ -54,6 +60,11 @@ const router = createRouter({
|
||||
name: "free-rooms",
|
||||
component: FreeRooms,
|
||||
},
|
||||
{
|
||||
path: "/calendar/view",
|
||||
name: "calendar-view",
|
||||
component: CalenderViewer,
|
||||
},
|
||||
{
|
||||
path: "/faq",
|
||||
name: "faq",
|
||||
@@ -80,7 +91,7 @@ const router = createRouter({
|
||||
component: CalendarLink,
|
||||
},
|
||||
{
|
||||
path: "/edit",
|
||||
path: "/calendar/edit",
|
||||
name: "edit",
|
||||
component: EditCalendarView,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user