Sha256: 5dd8cb4a727465f4f359dac6c2af633680a32d7368534b61d7ddc987e97137da
Contents?: true
Size: 731 Bytes
Versions: 3
Compression:
Stored size: 731 Bytes
Contents
class Tramway::Landing::BlockDecorator < ::Tramway::Core::ApplicationDecorator class << self def collections [ :all ] end def list_attributes [ :position, :view_state, :block_type ] end delegate :human_view_state_event_name, to: :model_class end delegate :position, to: :object delegate :title, to: :object delegate :background, to: :object delegate :anchor, to: :object delegate :description, to: :object delegate :anchor, to: :object def block_type object.block_type_text end def view_state object.human_view_state_name end def view_state_button_color(event) case event when :publish :primary when :hide :secondary end end end
Version data entries
3 entries across 3 versions & 1 rubygems