mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 06:42:25 -05:00
update the maximum page value for tokens endpoint to 100
This commit is contained in:
parent
7d3708c5f9
commit
4c201335bd
1 changed files with 3 additions and 3 deletions
|
|
@ -117,9 +117,9 @@ func (m *Module) TokensInfoGETHandler(c *gin.Context) {
|
|||
}
|
||||
|
||||
page, errWithCode := paging.ParseIDPage(c,
|
||||
0, // min limit
|
||||
80, // max limit
|
||||
20, // default limit
|
||||
0, // min limit
|
||||
100, // max limit
|
||||
20, // default limit
|
||||
)
|
||||
if errWithCode != nil {
|
||||
apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue