2013-02-05 14:16:51 -05:00
|
|
|
class CurrentUserSerializer < BasicUserSerializer
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
attributes :name,
|
|
|
|
:unread_notifications,
|
|
|
|
:unread_private_messages,
|
|
|
|
:admin?,
|
|
|
|
:notification_channel_position,
|
2013-02-07 16:40:48 -05:00
|
|
|
:site_flagged_posts_count,
|
2013-02-14 12:10:53 -05:00
|
|
|
:moderator?,
|
2013-02-14 17:58:44 -05:00
|
|
|
:reply_count,
|
2013-03-12 23:06:58 -04:00
|
|
|
:topic_count,
|
|
|
|
:enable_quoting,
|
|
|
|
:external_links_in_new_tab
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# we probably want to move this into site, but that json is cached so hanging it off current user seems okish
|
|
|
|
|
|
|
|
def include_site_flagged_posts_count?
|
|
|
|
object.admin
|
|
|
|
end
|
|
|
|
|
2013-02-14 17:58:44 -05:00
|
|
|
def topic_count
|
|
|
|
object.topics.count
|
|
|
|
end
|
|
|
|
|
|
|
|
def reply_count
|
|
|
|
object.posts.where("post_number > 1").count
|
2013-02-14 12:10:53 -05:00
|
|
|
end
|
|
|
|
|
2013-02-07 16:40:48 -05:00
|
|
|
def moderator?
|
2013-03-20 00:05:19 -04:00
|
|
|
object.moderator?
|
2013-02-07 16:40:48 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def site_flagged_posts_count
|
|
|
|
PostAction.flagged_posts_count
|
|
|
|
end
|
2013-02-14 17:58:44 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|