Sha256: e50addea1ff006a943db6e0a244ba94b5a0ed5009a7c566c33b89693cb98320b
Contents?: true
Size: 399 Bytes
Versions: 27
Compression:
Stored size: 399 Bytes
Contents
module Alchemy class EssenceTextSerializer < ActiveModel::Serializer self.root = false attributes :id, :body, :link, :created_at, :updated_at def link return if object.link.blank? { url: object.link, title: object.link_title, css_class: object.link_class_name, target: object.link_target } end end end
Version data entries
27 entries across 27 versions & 2 rubygems