diff options
author | 6543 <6543@obermui.de> | 2019-12-27 21:30:58 +0100 |
---|---|---|
committer | zeripath <art27@cantab.net> | 2019-12-27 20:30:58 +0000 |
commit | f2d03cda96eb5febbf9801f6b6cf5daa37220bc9 (patch) | |
tree | 8906922ca58d47634ec2b6237f00a87389dd8316 /models/fixtures/tracked_time.yml | |
parent | 0bcf644da4c3d21fad3ce8f33ccc26f8110568d6 (diff) | |
download | gitea-f2d03cda96eb5febbf9801f6b6cf5daa37220bc9.tar.gz gitea-f2d03cda96eb5febbf9801f6b6cf5daa37220bc9.zip |
[API] Extend times API (#9200)
Extensively extend the times API.
close #8833; close #8513; close #8559
Diffstat (limited to 'models/fixtures/tracked_time.yml')
-rw-r--r-- | models/fixtures/tracked_time.yml | 41 |
1 files changed, 39 insertions, 2 deletions
diff --git a/models/fixtures/tracked_time.yml b/models/fixtures/tracked_time.yml index 06a71c5ad9..768af38d9e 100644 --- a/models/fixtures/tracked_time.yml +++ b/models/fixtures/tracked_time.yml @@ -4,6 +4,7 @@ issue_id: 1 time: 400 created_unix: 946684800 + deleted: false - id: 2 @@ -11,6 +12,7 @@ issue_id: 2 time: 3661 created_unix: 946684801 + deleted: false - id: 3 @@ -18,17 +20,52 @@ issue_id: 2 time: 1 created_unix: 946684802 + deleted: false - id: 4 user_id: -1 issue_id: 4 time: 1 - created_unix: 946684802 + created_unix: 946684803 + deleted: false - id: 5 user_id: 2 issue_id: 5 time: 1 - created_unix: 946684802 + created_unix: 946684804 + deleted: false + +- + id: 6 + user_id: 1 + issue_id: 2 + time: 20 + created_unix: 946684812 + deleted: false + +- + id: 7 + user_id: 2 + issue_id: 4 + time: 3 + created_unix: 946684813 + deleted: false + +- + id: 8 + user_id: 1 + issue_id: 4 + time: 71 + created_unix: 947688814 + deleted: false + +- + id: 9 + user_id: 2 + issue_id: 2 + time: 100000 + created_unix: 947688815 + deleted: true |