We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c363c5 commit 3e992a0Copy full SHA for 3e992a0
routers/api/v1/api.go
@@ -1426,6 +1426,7 @@ func Routes() *web.Router {
1426
Get(repo.GetFileContentsGet).
1427
Post(bind(api.GetFilesOptions{}), repo.GetFileContentsPost) // POST method requires "write" permission, so we also support "GET" method above
1428
m.Get("/signing-key.gpg", misc.SigningKey)
1429
+ m.Get("/signing-key.pub", misc.SigningKeySSH)
1430
m.Group("/topics", func() {
1431
m.Combo("").Get(repo.ListTopics).
1432
Put(reqToken(), reqAdmin(), bind(api.RepoTopicOptions{}), repo.UpdateTopics)
0 commit comments