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

Configure Feed

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

oups

+2
+2
api/index.ts
··· 27 27 import getFeed from "./so/sprk/feed/getFeed.ts"; 28 28 import getFeedGenerator from "./so/sprk/feed/getFeedGenerator.ts"; 29 29 import getFeedGenerators from "./so/sprk/feed/getFeedGenerators.ts"; 30 + import getServices from "./so/sprk/labeler/getServices.ts"; 30 31 31 32 export default function (server: Server, ctx: AppContext) { 32 33 getAccountInfos(server, ctx); ··· 56 57 getFeed(server, ctx); 57 58 getFeedGenerator(server, ctx); 58 59 getFeedGenerators(server, ctx); 60 + getServices(server, ctx); 59 61 }