diff options
author | zeripath <art27@cantab.net> | 2022-06-04 19:30:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-04 19:30:01 +0100 |
commit | 449ea6005fb613212102126ff267f5c16f7c40b8 (patch) | |
tree | 0168970d73ad6bb3bafda9bacb70939fc114deff /models/fixtures/repository.yml | |
parent | d0a2c1e82bf7d6505c268bc106d2ff57be6eb7d7 (diff) | |
download | gitea-449ea6005fb613212102126ff267f5c16f7c40b8.tar.gz gitea-449ea6005fb613212102126ff267f5c16f7c40b8.zip |
Exclude Archived repos from Dashboard Milestones (#19882)
Milestones in archived repos should not be displayed on `/milestones`. Therefore
we should exclude these repositories from milestones page.
Fix #18257
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'models/fixtures/repository.yml')
-rw-r--r-- | models/fixtures/repository.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/models/fixtures/repository.yml b/models/fixtures/repository.yml index 450c2f26af..82b3ed16dc 100644 --- a/models/fixtures/repository.yml +++ b/models/fixtures/repository.yml @@ -618,7 +618,8 @@ num_forks: 0 num_issues: 1 num_milestones: 1 - is_mirror: false + is_mirror: + is_archived: false - id: 43 |