Skip to content

Commit

Permalink
transfer feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
dholms committed Dec 5, 2023
1 parent f9fd3e6 commit 101cfa5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-and-push-bsky-aws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- transfer-feeds
env:
REGISTRY: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_REGISTRY }}
USERNAME: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_USERNAME }}
Expand Down
8 changes: 4 additions & 4 deletions packages/bsky/src/feed-gen/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { AtUri } from '@atproto/syntax'
import { ids } from '../lexicon/lexicons'
import withFriends from './with-friends'
// import withFriends from './with-friends'
import bskyTeam from './bsky-team'
import hotClassic from './hot-classic'
import bestOfFollows from './best-of-follows'
// import bestOfFollows from './best-of-follows'
import mutuals from './mutuals'
import { MountedAlgos } from './types'

Expand All @@ -13,9 +13,9 @@ const feedgenUri = (did, name) =>
// These are custom algorithms that will be mounted directly onto an AppView
// Feel free to remove, update to your own, or serve the following logic at a record that you control
export const makeAlgos = (did: string): MountedAlgos => ({
[feedgenUri(did, 'with-friends')]: withFriends,
// [feedgenUri(did, 'with-friends')]: withFriends,
[feedgenUri(did, 'bsky-team')]: bskyTeam,
[feedgenUri(did, 'hot-classic')]: hotClassic,
[feedgenUri(did, 'best-of-follows')]: bestOfFollows,
// [feedgenUri(did, 'best-of-follows')]: bestOfFollows,
[feedgenUri(did, 'mutuals')]: mutuals,
})

0 comments on commit 101cfa5

Please sign in to comment.