Skip to content

Commit

Permalink
New routes for ediotr and templates list; #8, #11
Browse files Browse the repository at this point in the history
  • Loading branch information
j-000 committed Jul 29, 2023
1 parent 0977d3b commit 02727d9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion frontend/src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import LoginPage from '../views/LoginPage.vue'
import DashboardPage from '../views/DashboardPage.vue'
import ForgotPwdPage from '../views/ForgotPwdPage.vue'
import FeedsPage from '../views/FeedsPage.vue'
import EditBJPPage from '../views/cms/EditBJPPage.vue'
import CMSEditorPage from '../views/cms/CMSEditor.vue'
import FeedDetailsPage from '../views/FeedDetailsPage.vue'
import globalStore from '../stores/global';

Expand Down Expand Up @@ -47,6 +49,11 @@ const router = createRouter({
name: 'feeds',
component: FeedsPage
},
{
path: '/cms/editor/:templateid',
name: 'cms-editor',
component: CMSEditorPage
},
{
path: '/feeds/:feedid',
name: 'feed-details',
Expand All @@ -55,7 +62,7 @@ const router = createRouter({
{
path: '/cms-edit-bdp',
name: 'cms-edit-bdp',
component: HomeView
component: EditBJPPage
},
{
path: '/cms-edit-adp',
Expand Down

0 comments on commit 02727d9

Please sign in to comment.