You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mastodon/app/controllers
aschmitz eeaec39888 Allow hiding of reblogs from followed users (#5762)
* Allow hiding of reblogs from followed users

This adds a new entry to the account menu to allow users to hide
future reblogs from a user (and then if they've done that, to show
future reblogs instead).

This does not remove or add historical reblogs from/to the user's
timeline; it only affects new statuses.

The API for this operates by sending a "reblogs" key to the follow
endpoint. If this is sent when starting a new follow, it will be
respected from the beginning of the follow relationship (even if
the follow request must be approved by the followee). If this is
sent when a follow relationship already exists, it will simply
update the existing follow relationship. As with the notification
muting, this will now return an object ({reblogs: [true|false]}) or
false for each follow relationship when requesting relationship
information for an account. This should cause few issues due to an
object being truthy in many languages, but some modifications may
need to be made in pickier languages.

Database changes: adds a show_reblogs column (default true,
non-nullable) to the follows and follow_requests tables. Because
these are non-nullable, we use the existing MigrationHelpers to
perform this change without locking those tables, although the
tables are likely to be small anyway.

Tests included.

See also <https://github.com/glitch-soc/mastodon/pull/212>.

* Rubocop fixes

* Code review changes

* Test fixes

This patchset closes #648 and resolves #3271.

* Rubocop fix

* Revert reblogs defaulting in argument, fix tests

It turns out we needed this for the same reason we needed it in muting:
if nil gets passed in somehow (most usually by an API client not passing
any value), we need to detect and handle it.

We could specify a default in the parameter and then also catch nil, but
there's no great reason to duplicate the default value.
7 years ago
..
activitypub Fix HTTP responses for salmon and ActivityPub inbox processing (#5200) 8 years ago
admin Add consumable invites (#5814) 7 years ago
api Allow hiding of reblogs from followed users (#5762) 7 years ago
auth Add consumable invites (#5814) 7 years ago
concerns Add logging of admin actions (#5757) 7 years ago
oauth Fix #1165 - before_action was called before protect_from_forgery 8 years ago
settings Fix account migration feature (#5837) 7 years ago
well_known Ensure well_known controllers use WEB_DOMAIN by including RoutingHelper (#2388) 8 years ago
about_controller.rb Redesign the landing page, mount public timeline on it (#4122) 8 years ago
account_follow_controller.rb Restful refactor of accounts/ routes (#2133) 8 years ago
account_unfollow_controller.rb Restful refactor of accounts/ routes (#2133) 8 years ago
accounts_controller.rb Encode custom emojis as resolveable objects in ActivityPub (#5243) 8 years ago
application_controller.rb Fix some rubocop style issues (#5730) 7 years ago
authorize_follows_controller.rb Add "signed in as" header to some pages (#4523) 8 years ago
emojis_controller.rb Encode custom emojis as resolveable objects in ActivityPub (#5243) 8 years ago
follower_accounts_controller.rb Encode custom emojis as resolveable objects in ActivityPub (#5243) 8 years ago
following_accounts_controller.rb Encode custom emojis as resolveable objects in ActivityPub (#5243) 8 years ago
home_controller.rb When web UI URL used while logged out, redirect to static page (#4954) 8 years ago
intents_controller.rb Add protocol handler. Handle follow intents (#4511) 8 years ago
invites_controller.rb Add consumable invites (#5814) 7 years ago
manifests_controller.rb Make Chrome splash screen same color as web UI's background color (#5169) 8 years ago
media_controller.rb Extract authorization policy for viewing statuses (#3150) 8 years ago
media_proxy_controller.rb Fix incomplete account records being read (#4998) 8 years ago
remote_follow_controller.rb Add "signed in as" header to some pages (#4523) 8 years ago
shares_controller.rb Make share intent modal to make "signed in as" shown. (#4611) 8 years ago
statuses_controller.rb Encode custom emojis as resolveable objects in ActivityPub (#5243) 8 years ago
stream_entries_controller.rb Update status embeds (#4742) 8 years ago
tags_controller.rb Redesign public hashtag pages (#5237) 8 years ago