Added link sharing (#30)
This commit is contained in:
parent
857c283fb7
commit
d83fb24bbd
18 changed files with 397 additions and 41 deletions
|
|
@ -12,6 +12,7 @@ import ShowListComponent from '@/components/lists/ShowList'
|
|||
import NewListComponent from '@/components/lists/NewList'
|
||||
import EditListComponent from '@/components/lists/EditList'
|
||||
import ShowTasksInRangeComponent from '@/components/tasks/ShowTasksInRange'
|
||||
import LinkShareAuthComponent from '@/components/sharing/linkSharingAuth'
|
||||
// Namespace Handling
|
||||
import NewNamespaceComponent from '@/components/namespaces/NewNamespace'
|
||||
import EditNamespaceComponent from '@/components/namespaces/EditNamespace'
|
||||
|
|
@ -106,6 +107,11 @@ export default new Router({
|
|||
path: '/labels',
|
||||
name: 'listLabels',
|
||||
component: ListLabelsComponent
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/share/:share/auth',
|
||||
name: 'linkShareAuth',
|
||||
component: LinkShareAuthComponent
|
||||
},
|
||||
]
|
||||
})
|
||||
Reference in a new issue