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)) }