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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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)