mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 06:55:00 +08:00
* 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
9 lines
221 B
Ruby
9 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
|