diff options
author | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-02-06 23:18:36 +0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-02-06 23:18:36 +0800 |
commit | 71d35dae8cd33760b9be266a38d4f76b00ceb373 (patch) | |
tree | cf801d761f147e0fd73d56ca9e6956f5e3f116e1 /models/fixtures/repository.yml | |
parent | 76969a5671987d0aba5bfb72a7989aae71692254 (diff) | |
download | gitea-71d35dae8cd33760b9be266a38d4f76b00ceb373.tar.gz gitea-71d35dae8cd33760b9be266a38d4f76b00ceb373.zip |
fix: wrong pages number which includes private repository count. (#844)
Diffstat (limited to 'models/fixtures/repository.yml')
-rw-r--r-- | models/fixtures/repository.yml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/models/fixtures/repository.yml b/models/fixtures/repository.yml index c45374f4f2..9f4b496010 100644 --- a/models/fixtures/repository.yml +++ b/models/fixtures/repository.yml @@ -56,3 +56,39 @@ num_pulls: 0 num_closed_pulls: 0 is_mirror: true + +- + id: 6 + owner_id: 10 + lower_name: repo6 + name: repo6 + is_private: true + num_issues: 0 + num_closed_issues: 0 + num_pulls: 0 + num_closed_pulls: 0 + is_mirror: false + +- + id: 7 + owner_id: 10 + lower_name: repo7 + name: repo7 + is_private: true + num_issues: 0 + num_closed_issues: 0 + num_pulls: 0 + num_closed_pulls: 0 + is_mirror: false + +- + id: 8 + owner_id: 10 + lower_name: repo8 + name: repo8 + is_private: false + num_issues: 0 + num_closed_issues: 0 + num_pulls: 0 + num_closed_pulls: 0 + is_mirror: false |