Sha256: bca359f4a8969a36edff0ee4eadd4f233a73938eda36e21ce2c80d38376ec8a9
Contents?: true
Size: 437 Bytes
Versions: 12
Compression:
Stored size: 437 Bytes
Contents
module Headmin module Field extend ActiveSupport::Concern included do # Configuration has_closure_tree # Associations belongs_to :fieldable, polymorphic: true, optional: true, touch: true belongs_to :field, optional: true, touch: true has_many :fields, foreign_key: "parent_id" accepts_nested_attributes_for :fields, allow_destroy: true has_one_attached :file end end end
Version data entries
12 entries across 12 versions & 1 rubygems