Task Detail View (#37)
This commit is contained in:
parent
e00f0046b5
commit
4e5d14d969
39 changed files with 2228 additions and 503 deletions
|
|
@ -13,6 +13,7 @@ import NewListComponent from '@/components/lists/NewList'
|
|||
import EditListComponent from '@/components/lists/EditList'
|
||||
import ShowTasksInRangeComponent from '@/components/tasks/ShowTasksInRange'
|
||||
import LinkShareAuthComponent from '@/components/sharing/linkSharingAuth'
|
||||
import TaskDetailViewComponent from '@/components/tasks/TaskDetailView'
|
||||
// Namespace Handling
|
||||
import NewNamespaceComponent from '@/components/namespaces/NewNamespace'
|
||||
import EditNamespaceComponent from '@/components/namespaces/EditNamespace'
|
||||
|
|
@ -115,10 +116,15 @@ export default new Router({
|
|||
component: EditTeamComponent
|
||||
},
|
||||
{
|
||||
path: '/tasks/:type',
|
||||
path: '/tasks/by/:type',
|
||||
name: 'showTasksInRange',
|
||||
component: ShowTasksInRangeComponent
|
||||
},
|
||||
{
|
||||
path: '/tasks/:id',
|
||||
name: 'taskDetailView',
|
||||
component: TaskDetailViewComponent,
|
||||
},
|
||||
{
|
||||
path: '/labels',
|
||||
name: 'listLabels',
|
||||
|
|
|
|||
Reference in a new issue