class Decidim::Meetings::PublicParticipantsListCell
cell(“decidim/public_participants_list”, meeting)
Example:
This cell renders the list of public participants of a meeting.
def public_participants
Finds the public participants (as users) of meeting
def public_participants @public_participants ||= model.public_participants.map { |user| present(user) } end
def show
def show return if public_participants.blank? render end