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

Fix bad method call when deleting user secrets via API (#27829)

Fixed a little mistake when you deleting user secrets via the API. Found
it when working on #27725.
It should be backported to 1.21 I think.
This commit is contained in:
Jean-Baptiste Gomond
2023-10-29 13:19:57 +01:00
committed by GitHub
parent 3c78cb832d
commit 641e8165c7

View File

@@ -961,7 +961,7 @@ func Routes() *web.Route {
m.Group("/actions/secrets", func() {
m.Combo("/{secretname}").
Put(bind(api.CreateOrUpdateSecretOption{}), user.CreateOrUpdateSecret).
Delete(repo.DeleteSecret)
Delete(user.DeleteSecret)
})
m.Get("/followers", user.ListMyFollowers)