Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

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

at 999e52ed2d5a2c8b2f7b8747dfcfd0e2017e5eb0 22 lines 488 B view raw
1import {Express} from 'express' 2 3import {AppContext} from '../context.js' 4 5export default function (ctx: AppContext, app: Express) { 6 return app.get('/.well-known/apple-app-site-association', (req, res) => { 7 res.json({ 8 applinks: { 9 apps: [], 10 details: [ 11 { 12 appID: 'B3LX46C5HS.app.witchsky', 13 paths: ['*'], 14 }, 15 ], 16 }, 17 appclips: { 18 apps: ['B3LX46C5HS.app.witchsky.AppClip'], 19 }, 20 }) 21 }) 22}