diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2019-05-31 04:26:57 +0800 |
---|---|---|
committer | techknowlogick <techknowlogick@gitea.io> | 2019-05-30 16:26:57 -0400 |
commit | 7d12ec2abd452c6a8a5981537ce2c50440979e25 (patch) | |
tree | 450db74a634c633b4278890a9b1c389d1421689a /modules/migrations/git.go | |
parent | 43cf2f3b55de4a69183966da2a6e0167592c733c (diff) | |
download | gitea-7d12ec2abd452c6a8a5981537ce2c50440979e25.tar.gz gitea-7d12ec2abd452c6a8a5981537ce2c50440979e25.zip |
improve github downloader on migrations (#7049)
* improve github downloader on migrations
* fix tests
* fix uppercase function parameters
Diffstat (limited to 'modules/migrations/git.go')
-rw-r--r-- | modules/migrations/git.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/migrations/git.go b/modules/migrations/git.go index cbaa372821..335d44ec9b 100644 --- a/modules/migrations/git.go +++ b/modules/migrations/git.go @@ -53,9 +53,9 @@ func (g *PlainGitDownloader) GetReleases() ([]*base.Release, error) { return nil, ErrNotSupported } -// GetIssues returns issues according start and limit -func (g *PlainGitDownloader) GetIssues(start, limit int) ([]*base.Issue, error) { - return nil, ErrNotSupported +// GetIssues returns issues according page and perPage +func (g *PlainGitDownloader) GetIssues(page, perPage int) ([]*base.Issue, bool, error) { + return nil, false, ErrNotSupported } // GetComments returns comments according issueNumber @@ -63,7 +63,7 @@ func (g *PlainGitDownloader) GetComments(issueNumber int64) ([]*base.Comment, er return nil, ErrNotSupported } -// GetPullRequests returns pull requests according start and limit +// GetPullRequests returns pull requests according page and perPage func (g *PlainGitDownloader) GetPullRequests(start, limit int) ([]*base.PullRequest, error) { return nil, ErrNotSupported } |