mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 10:29:35 +08:00
bc75010b20
FEATURE: clicking envelope takes you to inbox Suggested messages works somewhat like suggested topics. - New show up first (in either group inbox or inbox) - Then unread (in either group inbox or inbox) - Finally "related" which are messages with same participants as the current pm.
21 lines
554 B
Ruby
21 lines
554 B
Ruby
class SuggestedTopicSerializer < ListableTopicSerializer
|
|
|
|
# need to embed so we have users
|
|
# front page json gets away without embedding
|
|
class SuggestedPosterSerializer < ApplicationSerializer
|
|
attributes :extras, :description
|
|
has_one :user, serializer: BasicUserSerializer, embed: :objects
|
|
end
|
|
|
|
attributes :archetype, :like_count, :views, :category_id
|
|
has_many :posters, serializer: SuggestedPosterSerializer, embed: :objects
|
|
|
|
def include_posters?
|
|
object.private_message?
|
|
end
|
|
|
|
def posters
|
|
object.posters || []
|
|
end
|
|
end
|