Merge remote-tracking branch 'origin' into 3-semi-offline-room-finder

This commit is contained in:
survellow
2024-05-29 23:19:48 +02:00
31 changed files with 1745 additions and 1541 deletions

View File

@@ -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,
},