Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2019-08-30 09:05:21 +0300
committerdartcafe <github@dartcafe.de>2019-08-30 09:05:21 +0300
commit01ed392d3b63921b3d8abd7f837d92bfb8528235 (patch)
tree8360dbb207bf20bc3b5e848e81becfa8a0d8c7ac /src/js/router.js
parent3eb92ab9e58d1c8a20cd744c8702b24e03f39c7d (diff)
Update file structure and more progress in shares
Diffstat (limited to 'src/js/router.js')
-rw-r--r--src/js/router.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/js/router.js b/src/js/router.js
index bd3883c4..812dbfbd 100644
--- a/src/js/router.js
+++ b/src/js/router.js
@@ -46,7 +46,7 @@ export default new Router({
name: 'list'
},
{
- path: '/:index(index.php/)?apps/polls/vote/:hash',
+ path: '/:index(index.php/)?apps/polls/vote/:id',
components: {
default: Vote
},
@@ -54,7 +54,7 @@ export default new Router({
name: 'vote'
},
{
- path: '/:index(index.php/)?apps/polls/edit/:hash',
+ path: '/:index(index.php/)?apps/polls/edit/:id',
components: {
default: Create
},
@@ -62,7 +62,7 @@ export default new Router({
name: 'edit'
},
{
- path: '/:index(index.php/)?apps/polls/clone/:hash',
+ path: '/:index(index.php/)?apps/polls/clone/:id',
components: {
default: Create
},