[READ-ONLY] Mirror of https://github.com/flo-bit/contrail. atproto backend in a bottle flo-bit.dev/contrail/
0

Configure Feed

Select the types of activity you want to include in your feed.

bump limit to 200 max

Florian (Mar 20, 2026, 12:49 AM +0100) 627b73b9 33c8fea7

+4 -4
+1 -1
lexicons-generated/community/lexicon/calendar/event/listRecords.json
··· 11 11 "limit": { 12 12 "type": "integer", 13 13 "minimum": 1, 14 - "maximum": 100, 14 + "maximum": 200, 15 15 "default": 50 16 16 }, 17 17 "cursor": {
+1 -1
lexicons-generated/community/lexicon/calendar/rsvp/listRecords.json
··· 11 11 "limit": { 12 12 "type": "integer", 13 13 "minimum": 1, 14 - "maximum": 100, 14 + "maximum": 200, 15 15 "default": 50 16 16 }, 17 17 "cursor": {
+1 -1
src/core/db/records.ts
··· 225 225 search, 226 226 } = options; 227 227 228 - const limit = Math.min(Math.max(1, rawLimit ?? 50), 100); 228 + const limit = Math.min(Math.max(1, rawLimit ?? 50), 200); 229 229 const conditions: string[] = ["r.collection = ?"]; 230 230 const bindings: (string | number)[] = [collection]; 231 231
+1 -1
src/generate.ts
··· 324 324 325 325 // --- listRecords --- 326 326 const listParams: Record<string, any> = { 327 - limit: { type: "integer", minimum: 1, maximum: 100, default: 50 }, 327 + limit: { type: "integer", minimum: 1, maximum: 200, default: 50 }, 328 328 cursor: { type: "string" }, 329 329 actor: { type: "string", format: "at-identifier", description: "Filter by DID or handle (triggers on-demand backfill)" }, 330 330 profiles: { type: "boolean", description: "Include profile + identity info keyed by DID" },