Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Git-Trees API #5403

Merged
merged 10 commits into from
Nov 28, 2018
Prev Previous commit
Next Next commit
make fmt
  • Loading branch information
techknowlogick committed Nov 28, 2018
commit b3810aabc56940735796b13439c75c38d9c56898
2 changes: 1 addition & 1 deletion routers/api/v1/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ func RegisterRoutes(m *macaron.Macaron) {
m.Group("/:username/:reponame", func() {
m.Combo("").Get(reqAnyRepoReader(), repo.Get).
Delete(reqToken(), reqOwner(), repo.Delete)
m.Group("/git/trees", func() {
m.Group("/git/trees", func() {
techknowlogick marked this conversation as resolved.
Show resolved Hide resolved
m.Combo("/:sha", context.RepoRef()).Get(repo.GetTree)
})
m.Group("/hooks", func() {
Expand Down