[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.

Update index.ts

+1 -3
+1 -3
services/appview/src/index.ts
··· 88 88 const getAuthorFeedRouter = createGetAuthorFeedRouter(ctx) 89 89 90 90 // Apply takedown filter middleware to content routes 91 - app.use('/xrpc/app.bsky.feed.*', takedownFilterMiddleware) 92 - app.use('/feed/*', takedownFilterMiddleware) 93 - app.use('/posts/*', takedownFilterMiddleware) 91 + app.use('/', takedownFilterMiddleware) 94 92 95 93 app.route('/', getPostsRouter) 96 94 app.route('/', getPostThreadRouter)