1
0

Add week and month view for tasks (#15)

This commit is contained in:
konrad
2018-12-25 22:41:55 +00:00
committed by Gitea
parent e094b654e2
commit d7f7058eef
10 changed files with 1305 additions and 899 deletions

View File

@ -11,6 +11,7 @@ import GetPasswordResetComponent from '@/components/user/RequestPasswordReset'
import ShowListComponent from '@/components/lists/ShowList'
import NewListComponent from '@/components/lists/NewList'
import EditListComponent from '@/components/lists/EditList'
import ShowTasksInRangeComponent from '@/components/lists/ShowTasksInRange'
// Namespace Handling
import NewNamespaceComponent from '@/components/namespaces/NewNamespace'
import EditNamespaceComponent from '@/components/namespaces/EditNamespace'
@ -89,5 +90,10 @@ export default new Router({
name: 'editTeam',
component: EditTeamComponent
},
{
path: '/tasks/:type',
name: 'showTasksInRange',
component: ShowTasksInRangeComponent
},
]
})