mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-30 02:52:26 -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
|
|
@ -118,7 +118,7 @@ func (m *Module) TokensInfoGETHandler(c *gin.Context) {
|
||||||
|
|
||||||
page, errWithCode := paging.ParseIDPage(c,
|
page, errWithCode := paging.ParseIDPage(c,
|
||||||
0, // min limit
|
0, // min limit
|
||||||
80, // max limit
|
100, // max limit
|
||||||
20, // default limit
|
20, // default limit
|
||||||
)
|
)
|
||||||
if errWithCode != nil {
|
if errWithCode != nil {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue