diff options
author | Gusted <williamzijl7@hotmail.com> | 2022-05-16 09:49:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 17:49:17 +0800 |
commit | 71ca131582fff51da614291732ed43b2bf48d8a1 (patch) | |
tree | 0d7d69b3c5e2110ba00f7049e7b0bd08ef8fff75 /models/fixtures/issue.yml | |
parent | d494cc335633ff838eaea547438b95e753aeec0f (diff) | |
download | gitea-71ca131582fff51da614291732ed43b2bf48d8a1.tar.gz gitea-71ca131582fff51da614291732ed43b2bf48d8a1.zip |
Fix issue overview for teams (#19652)
- Don't use hacky solution to limit to the correct RepoID's, instead use
current code to handle these limits. The existing code is more correct
than the hacky solution.
- Resolves #19636
- Add test-case
Diffstat (limited to 'models/fixtures/issue.yml')
-rw-r--r-- | models/fixtures/issue.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/models/fixtures/issue.yml b/models/fixtures/issue.yml index d5738d5db4..39dacc92ff 100644 --- a/models/fixtures/issue.yml +++ b/models/fixtures/issue.yml @@ -184,3 +184,27 @@ is_pull: false created_unix: 1602935696 updated_unix: 1602935696 + +- + id: 16 + repo_id: 32 + index: 1 + poster_id: 2 + name: just a normal issue + content: content + is_closed: false + is_pull: false + created_unix: 1602935696 + updated_unix: 1602935696 + +- + id: 17 + repo_id: 32 + index: 2 + poster_id: 15 + name: a issue with a assignment + content: content + is_closed: false + is_pull: false + created_unix: 1602935696 + updated_unix: 1602935696 |