add mange qr-codes
Deploy frontend / frontend (push) Successful in 57s

This commit is contained in:
2024-12-03 00:17:47 +02:00
parent 2f4ae28cce
commit 5c7cb6f8db
8 changed files with 140 additions and 11 deletions
+9 -3
View File
@@ -14,13 +14,19 @@ const routes = [
component: () => import('@/views/CreateView.vue'),
},
{
path: '/manage/:qr_code_uri/ready',
path: '/manage/dashboard',
name: ROUTE_NAMES.MANAGE_DASHBOARD,
component: () => import('@/views/ManageDashboardView.vue'),
props: true,
},
{
path: '/manage/qr/:qr_code_uri/ready',
name: ROUTE_NAMES.MANAGE_QR_CODE_READY,
component: () => import('@/views/ManageQRCodeReadyView.vue'),
props: true,
},
{
path: '/manage/:qr_code_uri/chat/:chat',
path: '/manage/qr/:qr_code_uri/chat/:chat',
name: ROUTE_NAMES.MANAGE_QR_CODE_CHAT,
component: () => import('@/views/ManageQRCodeChatView.vue'),
props: true,
@@ -37,7 +43,7 @@ const routes = [
component: () => import('@/views/DonateView.vue'),
},
{
path: '/chat/:qr_code_uri/:chat',
path: '/read/:qr_code_uri/chat/:chat',
name: ROUTE_NAMES.PUBLIC_CHAT,
component: () => import('@/views/PublicChatView.vue'),
props: true,