2013-02-06 03:16:51 +08:00
|
|
|
class CurrentUserSerializer < BasicUserSerializer
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
attributes :name,
|
|
|
|
:unread_notifications,
|
|
|
|
:unread_private_messages,
|
|
|
|
:admin?,
|
|
|
|
:notification_channel_position,
|
2013-02-08 05:40:48 +08:00
|
|
|
:site_flagged_posts_count,
|
2013-02-15 01:10:53 +08:00
|
|
|
:moderator?,
|
2013-05-02 15:22:27 +08:00
|
|
|
:staff?,
|
2013-02-15 06:58:44 +08:00
|
|
|
:reply_count,
|
2013-03-13 11:06:58 +08:00
|
|
|
:topic_count,
|
2013-04-28 08:37:53 +08:00
|
|
|
:enable_quoting,
|
|
|
|
:external_links_in_new_tab,
|
|
|
|
:trust_level
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
def include_site_flagged_posts_count?
|
2013-05-02 15:22:27 +08:00
|
|
|
object.staff?
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-02-15 06:58:44 +08:00
|
|
|
def topic_count
|
|
|
|
object.topics.count
|
|
|
|
end
|
|
|
|
|
|
|
|
def reply_count
|
2013-05-13 09:07:02 +08:00
|
|
|
object.topic_reply_count
|
2013-02-15 01:10:53 +08:00
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def site_flagged_posts_count
|
|
|
|
PostAction.flagged_posts_count
|
|
|
|
end
|
2013-02-15 06:58:44 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|