1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Add default branch to repo payload

This commit is contained in:
Josh Frye
2016-02-12 11:04:46 -05:00
parent 600d8edaca
commit 8662990746
2 changed files with 2 additions and 1 deletions

View File

@@ -415,6 +415,7 @@ func (repo *Repository) ComposePayload() *api.PayloadRepo {
UserName: repo.MustOwner().Name,
},
Private: repo.IsPrivate,
DefaultBranch: repo.DefaultBranch,
}
}