diff options
author | pataar <pietering1@gmail.com> | 2019-04-10 11:00:41 +0000 |
---|---|---|
committer | James Lopez <james@gitlab.com> | 2019-04-10 11:00:41 +0000 |
commit | a2d34fbfbe0ba1772359d4c62b93cb90a4d752b4 (patch) | |
tree | 7033dadffaae43e74ac3c0ae06c1e1c8fc211050 /spec/fixtures | |
parent | cd566c2622984a66e93b1536954464cab5628bcc (diff) | |
download | gitlab-ce-a2d34fbfbe0ba1772359d4c62b93cb90a4d752b4.tar.gz |
Add time tracking to issue board entities
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/api/schemas/entities/issue_board.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/entities/issue_board.json b/spec/fixtures/api/schemas/entities/issue_board.json index f7b270ffa8d..7cb65e1f2f5 100644 --- a/spec/fixtures/api/schemas/entities/issue_board.json +++ b/spec/fixtures/api/schemas/entities/issue_board.json @@ -9,6 +9,9 @@ "project_id": { "type": "integer" }, "relative_position": { "type": ["integer", "null"] }, "time_estimate": { "type": "integer" }, + "total_time_spent": { "type": "integer" }, + "human_time_estimate": { "type": ["string", "null"] }, + "human_total_time_spent": { "type": ["string", "null"] }, "weight": { "type": ["integer", "null"] }, "project": { "type": "object", |