31 lines
661 B
Ruby
31 lines
661 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Groups
|
|
class ParticipantsService < Groups::BaseService
|
|
include Users::ParticipableService
|
|
|
|
def execute(noteable)
|
|
@noteable = noteable
|
|
|
|
participants =
|
|
noteable_owner +
|
|
participants_in_noteable +
|
|
all_members +
|
|
groups +
|
|
group_members
|
|
|
|
render_participants_as_hash(participants.uniq)
|
|
end
|
|
|
|
def all_members
|
|
count = group_members.count
|
|
[{ username: "all", name: "All Group Members", count: count }]
|
|
end
|
|
|
|
def group_members
|
|
return [] unless group
|
|
|
|
@group_members ||= sorted(group.direct_and_indirect_users)
|
|
end
|
|
end
|
|
end
|