diff options
author | qwerty287 <80460567+qwerty287@users.noreply.github.com> | 2022-02-27 13:17:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-27 20:17:42 +0800 |
commit | 1563a45623bd3cea617b2a4395bcf3477023c6f2 (patch) | |
tree | 7ca09734eaf22d7c12738778b8614bb0735e420e /models/migrations | |
parent | 3ba9dcf4b4c82f2fa047e1278115b9e6b5464d53 (diff) | |
download | gitea-1563a45623bd3cea617b2a4395bcf3477023c6f2.tar.gz gitea-1563a45623bd3cea617b2a4395bcf3477023c6f2.zip |
Fix page and missing return on unadopted repos API (#18848)
* Fix page and missing return on unadopted repos API
Page must be 1 if it's not specified and it should return after sending an internal server error.
* Allow ignore pages
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'models/migrations')
-rw-r--r-- | models/migrations/migrations.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index 63d1c32259..31b172a68d 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -61,7 +61,6 @@ type Version struct { // update minDBVersion accordingly var migrations = []Migration{ // Gitea 1.5.0 ends at v69 - // v70 -> v71 NewMigration("add issue_dependencies", addIssueDependencies), // v71 -> v72 |