This repository has no description
0

Configure Feed

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

nanopub / src / contrail.config.ts
438 B 18 lines
1import type { ContrailConfig } from "@atmo-dev/contrail"; 2 3export const config: ContrailConfig = { 4 namespace: "org.latha.nanopub", 5 collections: { 6 nanopub: { 7 collection: "org.latha.nanopub", 8 queryable: { 9 nanopubType: {}, 10 signerPubkey: {}, 11 }, 12 searchable: ["assertion.label"], 13 methods: ["listRecords", "getRecord"], 14 }, 15 }, 16 profiles: ["app.bsky.actor.profile"], 17 notify: true, 18};