mastodon/app/controllers/settings
Daniel Axtens 4d85c27d1a
Add 'private' to Cache-Control, match Rails expectations ()
Several controlers set quite intricate Cache-Control headers in order to
hopefully not be cached by any intermediate proxies or local caches. Unfortunately,
these headers are processed by ActionDispatch::HTTP::Cache in a way that squashes
and discards any values set alongside no-store other than private:
8015c2c2cf/actionpack/lib/action_dispatch/http/cache.rb (L207-L209)

We want to preserve no-store on these responses, but we might as well remove
parts that are going to be dropped anyway. As many of the endpoints in these
controllers are private to a particular user, we should also add "private",
which will be preserved alongside no-store.
..
exports Add import/export feature for bookmarks ()
migration Refactor settings controllers ()
preferences Change /settings/preferences to redirect to appearance, add /settings/preferences/other ()
two_factor_authentication Explicitly set userVerification to discoraged ()
aliases_controller.rb Refactor settings controllers ()
applications_controller.rb Refactor settings controllers ()
base_controller.rb Add 'private' to Cache-Control, match Rails expectations ()
deletes_controller.rb Remove setting that disables account deletes ()
exports_controller.rb Refactor how Redis locks are created ()
featured_tags_controller.rb Change featured hashtag deletion to be done synchronously ()
imports_controller.rb Refactor settings controllers ()
login_activities_controller.rb Add authentication history ()
migrations_controller.rb Refactor settings controllers ()
pictures_controller.rb Fix profile update not being sent on profile/header picture deletion ()
preferences_controller.rb Remove digest e-mails ()
profiles_controller.rb Add `/api/v1/accounts/familiar_followers` to REST API ()
sessions_controller.rb Refactor settings controllers ()
two_factor_authentication_methods_controller.rb Refactor settings controllers ()