mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:38:01 +08:00
e01d5f80b4
* DEV: expose primary group as classes in more areas. Add group classes in the group posts pages Add primary group name as a class on the user card
10 lines
221 B
Ruby
10 lines
221 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GroupPostUserSerializer < BasicUserSerializer
|
|
attributes :title, :name, :primary_group_name
|
|
|
|
def primary_group_name
|
|
object.primary_group.name if object.primary_group
|
|
end
|
|
end
|