Bläddra i källkod

#809 able to set issue state to closed when create

Unknwon 8 år sedan
förälder
incheckning
bf5faf76eb
2 ändrade filer med 2 tillägg och 1 borttagningar
  1. 1 1
      glide.lock
  2. 1 0
      routers/api/v1/repo/issue.go

+ 1 - 1
glide.lock

@@ -43,7 +43,7 @@ imports:
 - name: github.com/gogits/git-module
   version: 76e8cce6c7ef3ba1cf75752261c721ebf14cd129
 - name: github.com/gogits/go-gogs-client
-  version: 1da1834d366c2c0b0b4495d34089082f4e38aed5
+  version: 01270dfe22e92d99ce9402fedba4530ad8810100
 - name: github.com/issue9/identicon
   version: f8c0d2ce04db79c663b1da33d3a9f62be753ee88
 - name: github.com/kardianos/minwinsvc

+ 1 - 0
routers/api/v1/repo/issue.go

@@ -57,6 +57,7 @@ func CreateIssue(ctx *context.APIContext, form api.CreateIssueOption) {
 		PosterID: ctx.User.Id,
 		Poster:   ctx.User,
 		Content:  form.Body,
+		IsClosed: form.Closed,
 	}
 
 	if ctx.Repo.IsWriter() {