mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:13:22 +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.
5 lines
140 B
Ruby
5 lines
140 B
Ruby
class TopicPosterSerializer < ApplicationSerializer
|
|
attributes :extras, :description
|
|
has_one :user, serializer: BasicUserSerializer
|
|
end
|