mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
Don't send notification on pending reviews (#8943)
This commit is contained in:
parent
3b0303a4fc
commit
8282f26250
@ -17,7 +17,9 @@ func CreateReview(opts models.CreateReviewOptions) (*models.Review, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
notification.NotifyPullRequestReview(review.Issue.PullRequest, review, nil)
|
if opts.Type != models.ReviewTypePending {
|
||||||
|
notification.NotifyPullRequestReview(review.Issue.PullRequest, review, nil)
|
||||||
|
}
|
||||||
|
|
||||||
return review, nil
|
return review, nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user