1
0

chore(gantt): wip daterange

This commit is contained in:
Dominik Pschenitschni
2022-10-10 21:44:59 +02:00
committed by kolaente
parent 3b244dfdbe
commit 9f146c8c7f
17 changed files with 659 additions and 158 deletions

View File

@ -2,8 +2,9 @@ import {AuthenticatedHTTPFactory} from '@/http-common'
import type {Method} from 'axios'
import {objectToSnakeCase} from '@/helpers/case'
import AbstractModel, { type IAbstract } from '@/models/abstractModel'
import type { Right } from '@/constants/rights'
import AbstractModel from '@/models/abstractModel'
import type {IAbstract} from '@/modelTypes/IAbstract'
import type {Right} from '@/constants/rights'
import type {IFile} from '@/modelTypes/IFile'
interface Paths {

View File

@ -2,7 +2,7 @@ import AbstractService from './abstractService'
import TaskModel from '../models/task'
import {formatISO} from 'date-fns'
export default class TaskCollectionService extends AbstractService {
export default class TaskCollectionService extends AbstractService<ITask> {
constructor() {
super({
getAll: '/lists/{listId}/tasks',