class Decidim::Meetings::AgendaItem

title, description and duration to render inside meeting.
The data store for a AgendaItem in the Decidim::Meetings component. It stores a

def self.agenda_item_children

def self.agenda_item_children
  where.not(parent_id: nil)
end

def self.first_class

def self.first_class
  where(parent_id: nil)
end

def self.log_presenter_class_for(_log)

def self.log_presenter_class_for(_log)
  Decidim::Meetings::AdminLog::AgendaItemPresenter
end

def parent?

def parent?
  return true unless parent_id
end