mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-20 16:10:50 +00:00
feat: API GET /repos/{owner}/{repo}/git/blobs
This commit is contained in:
parent
07e8684a61
commit
a4ea74020f
6 changed files with 167 additions and 7 deletions
|
@ -1310,6 +1310,7 @@ func Routes() *web.Route {
|
|||
m.Get("/refs", repo.GetGitAllRefs)
|
||||
m.Get("/refs/*", repo.GetGitRefs)
|
||||
m.Get("/trees/{sha}", repo.GetTree)
|
||||
m.Get("/blobs", repo.GetBlobs)
|
||||
m.Get("/blobs/{sha}", repo.GetBlob)
|
||||
m.Get("/tags/{sha}", repo.GetAnnotatedTag)
|
||||
m.Group("/notes/{sha}", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue