mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2024-11-10 06:54:16 +00:00
[bugfix] Correct Swagger path for poll voting (#2996)
Updates the Swagger spec to match the router. Fixes #2994
This commit is contained in:
parent
611f9de39b
commit
dcf825bd87
2 changed files with 2 additions and 2 deletions
|
@ -7522,7 +7522,7 @@ paths:
|
||||||
summary: View poll with given ID.
|
summary: View poll with given ID.
|
||||||
tags:
|
tags:
|
||||||
- polls
|
- polls
|
||||||
/api/v1/polls/{id}/vote:
|
/api/v1/polls/{id}/votes:
|
||||||
post:
|
post:
|
||||||
operationId: pollVote
|
operationId: pollVote
|
||||||
parameters:
|
parameters:
|
||||||
|
|
|
@ -29,7 +29,7 @@ import (
|
||||||
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
||||||
)
|
)
|
||||||
|
|
||||||
// PollVotePOSTHandler swagger:operation POST /api/v1/polls/{id}/vote pollVote
|
// PollVotePOSTHandler swagger:operation POST /api/v1/polls/{id}/votes pollVote
|
||||||
//
|
//
|
||||||
// Vote with choices in the given poll.
|
// Vote with choices in the given poll.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue