Skip to content

Commit

Permalink
No default syndication for notes + articles
Browse files Browse the repository at this point in the history
I find I'm unchecking them every time I create a
new post.
  • Loading branch information
barryf committed Aug 26, 2024
1 parent eb191a6 commit 837e264
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/http/get-micropub/config/syndicate-to.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ function syndicateTo (postType = null) {
switch (postType) {
case 'note':
return [
{ ...twitter, checked: true },
{ ...mastodon, checked: true },
{ ...bluesky, checked: true }
{ ...twitter },
{ ...mastodon },
{ ...bluesky }
]
case 'bookmark':
return [
{ ...pinboard, checked: true }
]
case 'article':
return [
{ ...twitter, checked: true },
{ ...mastodon, checked: true },
{ ...bluesky, checked: true }
{ ...twitter },
{ ...mastodon },
{ ...bluesky }
]
case 'like':
return [
Expand Down

0 comments on commit 837e264

Please sign in to comment.