diff options
author | Fire Demon <firedemon@creature.cafe> | 2020-10-21 01:50:04 -0500 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-10-21 01:50:04 -0500 |
commit | 0a32c484e1b8819983514f6f06da30c910cdd133 (patch) | |
tree | 48457fb5e94b1b47aeeb0c1d92758e58889b9fe9 /app/models | |
parent | 0e6cb59f2f51ad6831188b47fd9e5c6827e9ff91 (diff) |
Make receiving boosts from Tavern timeline in home feed opt-in; always aggregate boosts
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/user.rb | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index c494aa7a5..afe248f57 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -116,14 +116,14 @@ class User < ApplicationRecord delegate :auto_play_gif, :default_sensitive, :unfollow_modal, :boost_modal, :favourite_modal, :delete_modal, :reduce_motion, :system_font_ui, :noindex, :flavour, :skin, :display_media, :hide_network, :hide_followers_count, - :expand_spoilers, :default_language, :aggregate_reblogs, :show_application, + :expand_spoilers, :default_language, :show_application, :advanced_layout, :use_blurhash, :use_pending_items, :trends, :crop_images, :default_content_type, :system_emoji_font, :manual_publish, :style_dashed_nest, :style_underline_a, :style_css_profile, :style_css_profile_errors, :style_css_webapp, :style_css_webapp_errors, :style_wide_media, :publish_in, :unpublish_in, :unpublish_delete, :boost_every, :boost_jitter, - :boost_random, :unpublish_on_delete, :rss_disabled, :no_boosts_home, + :boost_random, :unpublish_on_delete, :rss_disabled, :home_reblogs, :filter_unknown, :max_history_public, :max_history_private, to: :settings, prefix: :setting, allow_nil: false @@ -255,16 +255,12 @@ class User < ApplicationRecord @hides_network ||= settings.hide_network end - def aggregates_reblogs? - @aggregates_reblogs ||= settings.aggregate_reblogs - end - def shows_application? @shows_application ||= settings.show_application end - def disables_home_reblogs? - @disables_home_reblogs ||= settings.no_boosts_home + def home_reblogs? + @home_reblogs ||= settings.home_reblogs end def filters_unknown? |