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.
pull/27825/head^2
Jean-Baptiste Gomond 1 year ago committed by GitHub
parent 3c78cb832d
commit 641e8165c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)

Loading…
Cancel
Save