This repository has no description
0

Configure Feed

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

papers / src / contrail.config.ts
503 B 20 lines
1import type { ContrailConfig } from "@atmo-dev/contrail"; 2 3export const config: ContrailConfig = { 4 namespace: "org.latha.papers", 5 collections: { 6 summary: { 7 collection: "org.latha.papers.summary", 8 queryable: { 9 paperUrl: {}, 10 venue: {}, 11 year: { type: "range" }, 12 posterDid: {}, 13 }, 14 searchable: ["title", "summary", "abstract"], 15 methods: ["listRecords", "getRecord"], 16 }, 17 }, 18 profiles: ["app.bsky.actor.profile"], 19 notify: true, 20};