aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Lubenka <mario.lubenka@googlemail.com>2019-04-20 22:50:34 +0200
committerLauris BH <lauris@nix.lv>2019-04-20 23:50:34 +0300
commitbc861347597a88ed476ec0124c4c4baf773255c3 (patch)
tree9ca8108e4d9b9c1c5f3d6b911b91ab38d9fa01b9
parentb1bb700665bdd801e9daac9c2a6013b551aeacec (diff)
downloadgitea-bc861347597a88ed476ec0124c4c4baf773255c3.tar.gz
gitea-bc861347597a88ed476ec0124c4c4baf773255c3.zip
Show "delete branch" button on closed pull requests (#6570) (#6601)
* Show button to delete a pull request branch after a pull request has been closed (#6570) Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update routers/repo/pull.go Co-Authored-By: saitho <mario.lubenka@googlemail.com>
-rw-r--r--options/locale/locale_en-US.ini1
-rw-r--r--routers/repo/issue.go1
-rw-r--r--routers/repo/pull.go4
-rw-r--r--templates/repo/issue/view_content/pull.tmpl12
4 files changed, 15 insertions, 3 deletions
diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini
index bcdd252b66..eedede2a05 100644
--- a/options/locale/locale_en-US.ini
+++ b/options/locale/locale_en-US.ini
@@ -944,6 +944,7 @@ pulls.tab_conversation = Conversation
pulls.tab_commits = Commits
pulls.tab_files = Files Changed
pulls.reopen_to_merge = Please reopen this pull request to perform a merge.
+pulls.cant_reopen_deleted_branch = This pull request cannot be reopened because the branch was deleted.
pulls.merged = Merged
pulls.has_merged = The pull request has been merged.
pulls.title_wip_desc = `<a href="#">Start the title with <strong>%s</strong></a> to prevent the pull request from being merged accidentally.`
diff --git a/routers/repo/issue.go b/routers/repo/issue.go
index c818ac4840..7a681033af 100644
--- a/routers/repo/issue.go
+++ b/routers/repo/issue.go
@@ -674,6 +674,7 @@ func ViewIssue(ctx *context.Context) {
PrepareMergedViewPullInfo(ctx, issue)
} else {
PrepareViewPullInfo(ctx, issue)
+ ctx.Data["DisableStatusChange"] = ctx.Data["IsPullRequestBroken"] == true && issue.IsClosed
}
if ctx.Written() {
return
diff --git a/routers/repo/pull.go b/routers/repo/pull.go
index 14ab2207b5..0616ee2c77 100644
--- a/routers/repo/pull.go
+++ b/routers/repo/pull.go
@@ -999,8 +999,8 @@ func CleanUpPullRequest(ctx *context.Context) {
pr := issue.PullRequest
- // Allow cleanup only for merged PR
- if !pr.HasMerged {
+ // Don't cleanup unmerged and unclosed PRs
+ if !pr.HasMerged && !issue.IsClosed {
ctx.NotFound("CleanUpPullRequest", nil)
return
}
diff --git a/templates/repo/issue/view_content/pull.tmpl b/templates/repo/issue/view_content/pull.tmpl
index 0ddb2820fc..73c4179080 100644
--- a/templates/repo/issue/view_content/pull.tmpl
+++ b/templates/repo/issue/view_content/pull.tmpl
@@ -58,8 +58,18 @@
{{end}}
{{else if .Issue.IsClosed}}
<div class="item text grey">
- {{$.i18n.Tr "repo.pulls.reopen_to_merge"}}
+ {{if .IsPullRequestBroken}}
+ {{$.i18n.Tr "repo.pulls.cant_reopen_deleted_branch"}}
+ {{else}}
+ {{$.i18n.Tr "repo.pulls.reopen_to_merge"}}
+ {{end}}
</div>
+ {{if .IsPullBranchDeletable}}
+ <div class="ui divider"></div>
+ <div>
+ <a class="delete-button ui red button" href="" data-url="{{.DeleteBranchLink}}">{{$.i18n.Tr "repo.branch.delete" .HeadTarget}}</a>
+ </div>
+ {{end}}
{{else if .IsPullFilesConflicted}}
<div class="item text grey">
<span class="octicon octicon-x"></span>