mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:43:19 +08:00
38 lines
903 B
Ruby
38 lines
903 B
Ruby
class CurrentUserSerializer < BasicUserSerializer
|
|
|
|
attributes :name,
|
|
:unread_notifications,
|
|
:unread_private_messages,
|
|
:admin?,
|
|
:notification_channel_position,
|
|
:site_flagged_posts_count,
|
|
:moderator?,
|
|
:staff?,
|
|
:reply_count,
|
|
:topic_count,
|
|
:enable_quoting,
|
|
:external_links_in_new_tab,
|
|
:trust_level
|
|
|
|
has_many :user_tracking_states, serializer: UserTrackingStateSerializer, embed: :objects
|
|
|
|
# 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.staff?
|
|
end
|
|
|
|
def topic_count
|
|
object.topics.count
|
|
end
|
|
|
|
def reply_count
|
|
object.topic_reply_count
|
|
end
|
|
|
|
def site_flagged_posts_count
|
|
PostAction.flagged_posts_count
|
|
end
|
|
|
|
end
|