Add app shortcuts when using vikunja as pwa

This commit is contained in:
kolaente 2020-07-05 21:19:45 +02:00
parent 5e170e14cc
commit 7346ded459
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 26 additions and 0 deletions

View File

@ -32,6 +32,32 @@ module.exports = {
"type": "image/png"
}
],
shortcuts: [
{
name: 'Overview',
url: '/',
},
{
name: 'Namespaces And Lists Overview',
short_name: 'Namespaces & Lists',
url: '/namespaces',
},
{
name: 'Tasks Next Week',
short_name: 'Next Week',
url: '/tasks/by/week',
},
{
name: 'Tasks Next Month',
short_name: 'Next Month',
url: '/tasks/by/month',
},
{
name: 'Teams Overview',
short_name: 'Teams',
url: '/teams',
}
]
},
}
}