spec(backend/api/federation/instances): ページネイションのアイテムの最大値を30に (MisskeyIO#456)
This commit is contained in:
parent
6751c38a52
commit
1a0664100d
|
@ -40,7 +40,7 @@ export const paramDef = {
|
|||
federating: { type: 'boolean', nullable: true },
|
||||
subscribing: { type: 'boolean', nullable: true },
|
||||
publishing: { type: 'boolean', nullable: true },
|
||||
limit: { type: 'integer', minimum: 1, maximum: 100, default: 30 },
|
||||
limit: { type: 'integer', minimum: 1, maximum: 30, default: 30 },
|
||||
offset: { type: 'integer', default: 0 },
|
||||
sort: {
|
||||
type: 'string',
|
||||
|
|
Loading…
Reference in New Issue