[READ ONLY MIRROR] Spark Social AppView Server github.com/sprksocial/server
atproto deno hono lexicon
1
fork

Configure Feed

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

fix(test): util db models

+5
+5
tests/util.ts
··· 78 78 bigThreadUris: new Set(["did:web:test"]), 79 79 maxThreadParents: 10, 80 80 labelsFromIssuerDids: [], 81 + notificationsDelayMs: 1000, 81 82 }; 82 83 83 84 // ============================================================================ ··· 196 197 Label: connection.model<models.LabelDocument>( 197 198 "Label", 198 199 models.labelSchema, 200 + ), 201 + Notification: connection.model<models.NotificationDocument>( 202 + "Notification", 203 + models.notificationSchema, 199 204 ), 200 205 }; 201 206