Skip to content

Commit

Permalink
tweak app clip AASA (#4641)
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok authored Jun 25, 2024
1 parent 58a9dce commit b753413
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions bskylink/src/routes/siteAssociation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ import {AppContext} from '../context.js'
export default function (ctx: AppContext, app: Express) {
return app.get('/.well-known/apple-app-site-association', (req, res) => {
res.json({
applinks: {
apps: [],
details: [
{
appID: 'B3LX46C5HS.xyz.blueskyweb.app',
paths: ['*'],
},
],
},
appclips: {
apps: ['B3LX46C5HS.xyz.blueskyweb.app.AppClip'],
},
Expand Down
6 changes: 3 additions & 3 deletions bskyweb/static/.well-known/apple-app-site-association
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"applinks": {
"appclips": {
"apps": ["B3LX46C5HS.xyz.blueskyweb.app.AppClip"]
},
"details": [
{
"appID": "B3LX46C5HS.xyz.blueskyweb.app",
Expand All @@ -11,5 +8,8 @@
]
}
]
},
"appclips": {
"apps": ["B3LX46C5HS.xyz.blueskyweb.app.AppClip"]
}
}

0 comments on commit b753413

Please sign in to comment.