1
0
Fork 0
forked from forgejo/forgejo

Add delete branch track on pull request comments (#888)

* add delete branch track on pull request comments

* don't change vendor
This commit is contained in:
Lunny Xiao 2017-02-11 12:00:29 +08:00 committed by GitHub
parent 3576e1ee73
commit cf0f451c37
7 changed files with 55 additions and 2 deletions

View file

@ -685,6 +685,24 @@ func (issue *Issue) ChangeTitle(doer *User, title string) (err error) {
return nil
}
// AddDeletePRBranchComment adds delete branch comment for pull request issue
func AddDeletePRBranchComment(doer *User, repo *Repository, issueID int64, branchName string) error {
issue, err := getIssueByID(x, issueID)
if err != nil {
return err
}
sess := x.NewSession()
defer sess.Close()
if err := sess.Begin(); err != nil {
return err
}
if _, err := createDeleteBranchComment(sess, doer, repo, issue, branchName); err != nil {
return err
}
return sess.Commit()
}
// ChangeContent changes issue content, as the given user.
func (issue *Issue) ChangeContent(doer *User, content string) (err error) {
oldContent := issue.Content