Skip to content

Commit

Permalink
fix routes
Browse files Browse the repository at this point in the history
  • Loading branch information
casparneumann-cap committed Nov 15, 2023
1 parent 67b21e9 commit 119d6a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/router/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,13 +280,13 @@ export const routes: Array<RouteConfig> = [
},
{
path: `/h5p/player/:id(${REGEX_H5P_ID})`,
component: () => import("../pages/H5PPlayer.page.vue"),
component: () => import("../pages/h5p/H5PPlayer.page.vue"),
name: "h5pPlayer",
//beforeEnter: createPermissionGuard(["H5P"]),
},
{
path: `/h5p/editor/:id(${REGEX_H5P_ID})?`,
component: () => import("../pages/H5PEditor.page.vue"),
component: () => import("../pages/h5p/H5PEditor.page.vue"),
name: "h5pEditor",
beforeEnter: validateQueryParameters({
parentType: isEnum(H5PContentParentType),
Expand Down

0 comments on commit 119d6a1

Please sign in to comment.