diff options
author | 6543 <6543@obermui.de> | 2020-01-13 17:02:24 +0100 |
---|---|---|
committer | Antoine GIRARD <sapk@users.noreply.github.com> | 2020-01-13 17:02:24 +0100 |
commit | 0b3aaa61964faa85b8008b04487388cc362ab436 (patch) | |
tree | cc6a3eda4780b7c8aa2d9e108a8a0ec393fbbb83 /models/fixtures | |
parent | b7ffc6a096bdb231d95ecbb5db878e3d8b2b63c9 (diff) | |
download | gitea-0b3aaa61964faa85b8008b04487388cc362ab436.tar.gz gitea-0b3aaa61964faa85b8008b04487388cc362ab436.zip |
[API] Add "before" query to ListIssueComments and ListRepoIssue… (#9685)
* add "before" query to ListIssueComments and ListRepoIssueComments
* Add TEST
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
Diffstat (limited to 'models/fixtures')
-rw-r--r-- | models/fixtures/comment.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/models/fixtures/comment.yml b/models/fixtures/comment.yml index 864313cac3..bd64680c8c 100644 --- a/models/fixtures/comment.yml +++ b/models/fixtures/comment.yml @@ -13,6 +13,7 @@ issue_id: 1 # in repo_id 1 content: "good work!" created_unix: 946684811 + updated_unix: 946684811 - id: 3 type: 0 # comment @@ -20,6 +21,7 @@ issue_id: 1 # in repo_id 1 content: "meh..." created_unix: 946684812 + updated_unix: 946684812 - id: 4 type: 21 # code comment @@ -63,4 +65,4 @@ review_id: 10 tree_path: "README.md" created_unix: 946684812 - invalidated: true
\ No newline at end of file + invalidated: true |