mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:31:56 +08:00
b27e12445d
This PR splits up the preference that controls the count vs dot and destination of sidebar links, which is really hard to understand, into 2 simpler checkboxes: The new preferences/checkboxes are off by default, but there are database migrations to switch the old preference to the new ones so that existing users don't have to update their preferences to keep their preferred behavior of sidebar links when this changed is rolled out. Internal topic: t/103529.
36 lines
1019 B
Ruby
36 lines
1019 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CurrentUserOptionSerializer < ApplicationSerializer
|
|
attributes :mailing_list_mode,
|
|
:external_links_in_new_tab,
|
|
:enable_quoting,
|
|
:dynamic_favicon,
|
|
:automatically_unpin_topics,
|
|
:likes_notifications_disabled,
|
|
:hide_profile_and_presence,
|
|
:title_count_mode,
|
|
:enable_defer,
|
|
:timezone,
|
|
:skip_new_user_tips,
|
|
:default_calendar,
|
|
:bookmark_auto_delete_preference,
|
|
:seen_popups,
|
|
:should_be_redirected_to_top,
|
|
:redirected_to_top,
|
|
:treat_as_new_topic_start_date,
|
|
:sidebar_link_to_filtered_list,
|
|
:sidebar_show_count_of_new_items
|
|
|
|
def likes_notifications_disabled
|
|
object.likes_notifications_disabled?
|
|
end
|
|
|
|
def include_redirected_to_top?
|
|
object.redirected_to_top.present?
|
|
end
|
|
|
|
def include_seen_popups?
|
|
SiteSetting.enable_user_tips
|
|
end
|
|
end
|