From 07995e23018b5aa3906884f3c80ea5181250121e Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Wed, 16 Sep 2020 00:42:19 +0200 Subject: [PATCH] Fix [API] [Bug] CreateRepo missing information (#12848) * Fix [API] [Bug] CreateRepo missing information * add code comment Co-authored-by: Lunny Xiao --- routers/api/v1/repo/repo.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/routers/api/v1/repo/repo.go b/routers/api/v1/repo/repo.go index 35062500f..603187c16 100644 --- a/routers/api/v1/repo/repo.go +++ b/routers/api/v1/repo/repo.go @@ -257,6 +257,12 @@ func CreateUserRepo(ctx *context.APIContext, owner *models.User, opt api.CreateR return } + // reload repo from db to get a real state after creation + repo, err = models.GetRepositoryByID(repo.ID) + if err != nil { + ctx.Error(http.StatusInternalServerError, "GetRepositoryByID", err) + } + ctx.JSON(http.StatusCreated, repo.APIFormat(models.AccessModeOwner)) }