Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpataar <pietering1@gmail.com>2019-04-10 14:00:41 +0300
committerJames Lopez <james@gitlab.com>2019-04-10 14:00:41 +0300
commita2d34fbfbe0ba1772359d4c62b93cb90a4d752b4 (patch)
tree7033dadffaae43e74ac3c0ae06c1e1c8fc211050 /spec/fixtures
parentcd566c2622984a66e93b1536954464cab5628bcc (diff)
Add time tracking to issue board entities
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/api/schemas/entities/issue_board.json3
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",