2016-02-17 12:46:19 +08:00
|
|
|
class UserOptionSerializer < ApplicationSerializer
|
|
|
|
attributes :user_id,
|
|
|
|
:email_always,
|
|
|
|
:mailing_list_mode,
|
2016-05-21 21:17:54 +08:00
|
|
|
:mailing_list_mode_frequency,
|
2016-02-17 12:46:19 +08:00
|
|
|
:email_digests,
|
|
|
|
:email_private_messages,
|
|
|
|
:email_direct,
|
|
|
|
:external_links_in_new_tab,
|
|
|
|
:dynamic_favicon,
|
|
|
|
:enable_quoting,
|
|
|
|
:disable_jump_reply,
|
2016-03-03 04:26:27 +08:00
|
|
|
:digest_after_minutes,
|
2016-02-17 12:46:19 +08:00
|
|
|
:automatically_unpin_topics,
|
2016-02-18 13:57:22 +08:00
|
|
|
:auto_track_topics_after_msecs,
|
2016-10-01 00:36:43 +08:00
|
|
|
:notification_level_when_replying,
|
2016-02-19 10:56:52 +08:00
|
|
|
:new_topic_duration_minutes,
|
2016-02-25 21:05:40 +08:00
|
|
|
:email_previous_replies,
|
2016-03-02 20:16:52 +08:00
|
|
|
:email_in_reply_to,
|
2016-03-18 05:35:23 +08:00
|
|
|
:like_notification_frequency,
|
2017-05-13 00:41:26 +08:00
|
|
|
:include_tl0_in_digests,
|
2017-05-16 00:48:08 +08:00
|
|
|
:theme_key,
|
|
|
|
:theme_key_seq
|
2016-02-17 12:46:19 +08:00
|
|
|
|
2016-02-18 13:57:22 +08:00
|
|
|
def auto_track_topics_after_msecs
|
|
|
|
object.auto_track_topics_after_msecs || SiteSetting.default_other_auto_track_topics_after_msecs
|
|
|
|
end
|
|
|
|
|
2016-10-01 00:36:43 +08:00
|
|
|
def notification_level_when_replying
|
|
|
|
object.notification_level_when_replying || SiteSetting.default_other_notification_level_when_replying
|
|
|
|
end
|
|
|
|
|
2016-02-18 13:57:22 +08:00
|
|
|
def new_topic_duration_minutes
|
|
|
|
object.new_topic_duration_minutes || SiteSetting.default_other_new_topic_duration_minutes
|
|
|
|
end
|
|
|
|
|
2017-05-13 00:41:26 +08:00
|
|
|
def theme_key
|
|
|
|
object.theme_key || SiteSetting.default_theme_key
|
|
|
|
end
|
|
|
|
|
2016-02-17 12:46:19 +08:00
|
|
|
end
|