mirror of
https://github.com/go-gitea/gitea
synced 2024-11-14 14:01:34 +01:00
Set owner id to zero when GetRegistrationToken for repo (#31725)
Fix #31707. It's split from #31724. Although #31724 could also fix #31707, it has change a lot so it's not a good idea to backport it.
This commit is contained in:
parent
d39bce7f00
commit
81fa471119
1 changed files with 1 additions and 1 deletions
|
@ -504,7 +504,7 @@ func (Action) GetRegistrationToken(ctx *context.APIContext) {
|
|||
// "200":
|
||||
// "$ref": "#/responses/RegistrationToken"
|
||||
|
||||
shared.GetRegistrationToken(ctx, ctx.Repo.Repository.OwnerID, ctx.Repo.Repository.ID)
|
||||
shared.GetRegistrationToken(ctx, 0, ctx.Repo.Repository.ID)
|
||||
}
|
||||
|
||||
var _ actions_service.API = new(Action)
|
||||
|
|
Loading…
Reference in a new issue