Class: Decidim::Conferences::ConferenceSpeakerCell

Inherits:
AuthorCell
  • Object
show all
Includes:
Cell::ViewModel::Partial, Meetings::MeetingCellsHelper
Defined in:
app/cells/decidim/conferences/conference_speaker_cell.rb

Overview

This cell renders the card for an instance of an Conference Speaker

Instance Method Summary collapse

Instance Method Details

#showObject



14
15
16
# File 'app/cells/decidim/conferences/conference_speaker_cell.rb', line 14

def show
  render
end

#speakers_listObject



18
19
20
21
22
23
24
25
26
# File 'app/cells/decidim/conferences/conference_speaker_cell.rb', line 18

def speakers_list
  cell(
    "decidim/collapsible_list",
    presenters_for_speakers(list),
    cell_name: "decidim/author",
    cell_options: options.merge(has_actions: false),
    size: size
  )
end