1
0

Start end end dates for tasks (#40)

This commit is contained in:
konrad
2018-12-22 15:45:16 +00:00
committed by Gitea
parent 7322bfafb3
commit 784b890f70
5 changed files with 41 additions and 23 deletions

View File

@ -49,6 +49,8 @@ definitions:
type: boolean
dueDate:
type: integer
endDate:
type: integer
id:
type: integer
listID:
@ -63,6 +65,8 @@ definitions:
type: array
repeatAfter:
type: integer
startDate:
type: integer
subtasks:
items:
$ref: '#/definitions/models.ListTask'
@ -392,9 +396,9 @@ paths:
get:
consumes:
- application/json
description: Returns a list by its ID.
description: Returns a team by its ID.
parameters:
- description: List ID
- description: Team ID
in: path
name: id
required: true
@ -403,12 +407,12 @@ paths:
- application/json
responses:
"200":
description: The list
description: The team
schema:
$ref: '#/definitions/models.List'
$ref: '#/definitions/models.Team'
type: object
"403":
description: The user does not have access to the list
description: The user does not have access to the team
schema:
$ref: '#/definitions/code.vikunja.io/web.HTTPError'
type: object
@ -419,9 +423,9 @@ paths:
type: object
security:
- ApiKeyAuth: []
summary: Gets one list
summary: Gets one team
tags:
- list
- team
post:
consumes:
- application/json