mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 10:41:45 +08:00
10 lines
268 B
Ruby
10 lines
268 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class InviteLinkSerializer < ApplicationSerializer
|
||
|
attributes :id, :invite_key, :created_at, :max_redemptions_allowed, :redemption_count, :expires_at, :group_names
|
||
|
|
||
|
def group_names
|
||
|
object.groups.pluck(:name).join(", ")
|
||
|
end
|
||
|
end
|