Sha256: 55b3f3803374f8f5467e81a9999f8b20960c2da046bef8e3357e5527e5afa8fc
Contents?: true
Size: 571 Bytes
Versions: 5
Compression:
Stored size: 571 Bytes
Contents
# frozen_string_literal: true require "cell/partial" module Decidim module Meetings # This cell renders the List (:l) meeting card # for an instance of a Meeting class MeetingLCell < Decidim::CardLCell delegate :component_settings, to: :controller alias meeting model def has_image? true end def extra_class "card__calendar-list__reset" end def image render end private def metadata_cell "decidim/meetings/meeting_card_metadata" end end end end
Version data entries
5 entries across 5 versions & 1 rubygems