We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce2c4ed commit 8ae3e2dCopy full SHA for 8ae3e2d
modules/migrations/git.go
@@ -78,3 +78,8 @@ func (g *PlainGitDownloader) GetComments(issueNumber int64) ([]*base.Comment, er
78
func (g *PlainGitDownloader) GetPullRequests(start, limit int) ([]*base.PullRequest, error) {
79
return nil, ErrNotSupported
80
}
81
+
82
+// GetReviews returns reviews according issue number
83
+func (g *PlainGitDownloader) GetReviews(issueNumber int64) ([]*base.Review, error) {
84
+ return nil, ErrNotSupported
85
+}
0 commit comments