Sha256: 8506da0199f747ba7001201efce9433807366effbaa66bc5a094f212394248cf
Contents?: true
Size: 977 Bytes
Versions: 6
Compression:
Stored size: 977 Bytes
Contents
::Card.error_codes[:conflict] = [:conflict, 409] def content db_content || (new_card? && template.db_content) end def content= value self.db_content = value end def raw_content structure ? template.db_content : content end format do def chunk_list # override to customize by set :default end end def label name end def creator Card[creator_id] end def updater Card[updater_id] end def clean_html? true end def save_content_draft _content clear_drafts end def clear_drafts drafts.created_by(Card::Auth.current_id).each(&:delete) end def last_draft_content drafts.last.card_changes.last.value end event :save_draft, before: :store, on: :update, when: proc { Env.params['draft'] == 'true' } do save_content_draft content abort :success end event :set_default_content, on: :create, before: :approve do if !db_content_changed? && template && template.db_content.present? self.db_content = template.db_content end end
Version data entries
6 entries across 6 versions & 1 rubygems