add Jo image, add coins with update and add incentives
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-01-03 19:52:51 +01:00
parent 125f6b80d8
commit 0e91cb0ac8
9 changed files with 89 additions and 11 deletions

View File

@ -156,19 +156,20 @@ export const asyncRoutes = [
{
path: 'index',
component: () => import('@/views/chatbot/index'),
name: 'Chatbot Joe',
meta: { title: 'Chatbot Joe', icon: 'message', affix: true }
name: 'Chatbot Jo',
meta: { title: 'Chatbot Jo', icon: 'message', affix: true }
}
]
},
{
path: '/incentives',
component: Layout,
redirect: '/example/list',
name: 'Example Articles',
redirect: '/incentives/list',
name: 'Incentives',
meta: {
title: 'Incentives',
icon: 'example'
icon: 'example',
roles: ['admin']
},
children: [
{
@ -196,6 +197,25 @@ export const asyncRoutes = [
}
]
},
{
path: '/getincentives',
component: Layout,
redirect: '/example/list',
name: 'Example Articles',
meta: {
title: 'Belohnungen',
icon: 'present',
roles: ['editor']
},
children: [
{
path: 'my',
component: () => import('@/views/incentives/list'),
name: 'Belohnungen',
meta: { title: 'Belohnungen', icon: 'star' }
}
]
},
{
path: '/permission',
component: Layout,