diff options
author | 赵智超 <1012112796@qq.com> | 2020-04-14 09:06:23 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 09:06:23 +0800 |
commit | 281029529bf98218b6c75353f2fce2d74b7ba196 (patch) | |
tree | c88354f13b20ddd024b167117c50a57cd11d92b7 /models/issue_comment.go | |
parent | 063b1d260fa5559fac0b77c215e8b06a9c083cec (diff) | |
download | gitea-281029529bf98218b6c75353f2fce2d74b7ba196.tar.gz gitea-281029529bf98218b6c75353f2fce2d74b7ba196.zip |
ui: Add MergePull comment type instead of close for merge PR (#11058)
Signed-off-by: a1012112796 <1012112796@qq.com>
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'models/issue_comment.go')
-rw-r--r-- | models/issue_comment.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/models/issue_comment.go b/models/issue_comment.go index f522604afc..2e59a2cb3f 100644 --- a/models/issue_comment.go +++ b/models/issue_comment.go @@ -88,6 +88,8 @@ const ( CommentTypeDeleteTimeManual // add or remove Request from one CommentTypeReviewRequest + // merge pull request + CommentTypeMergePull ) // CommentTag defines comment tag type |