aboutsummaryrefslogtreecommitdiffstats
path: root/bug/bug.go
diff options
context:
space:
mode:
authorVincent Tiu <46623413+Invincibot@users.noreply.github.com>2020-07-09 20:40:44 +0800
committerGitHub <noreply@github.com>2020-07-09 14:40:44 +0200
commitf3304bdc1c215e733b9a2ee6a228e64f663c2b09 (patch)
tree44e21d3922b270dfe92a49361567775e684a292a /bug/bug.go
parentde062a78ece6a33cc44d8bd3372d814b288ce916 (diff)
downloadgit-bug-f3304bdc1c215e733b9a2ee6a228e64f663c2b09.tar.gz
Add functionality to remove bugs from a local repository. (#423)
Add functionality to remove bugs from a local repository. This adds a function to remove git references in the repo and another one to remove bugs.
Diffstat (limited to 'bug/bug.go')
-rw-r--r--bug/bug.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/bug/bug.go b/bug/bug.go
index 24f0dcd5..04bd5996 100644
--- a/bug/bug.go
+++ b/bug/bug.go
@@ -242,6 +242,11 @@ func readBug(repo repository.ClockedRepo, ref string) (*Bug, error) {
return &bug, nil
}
+func RemoveLocalBug(repo repository.ClockedRepo, id entity.Id) error {
+ ref := bugsRefPattern + id.String()
+ return repo.RemoveRef(ref)
+}
+
type StreamedBug struct {
Bug *Bug
Err error