class Avo::Fields::TrixField

def initialize(id, **args, &block)

def initialize(id, **args, &block)
  super(id, **args, &block)
  hide_on :index
  @always_show = args[:always_show] || false
  @attachments_disabled = args[:attachments_disabled] || false
  @attachment_key = args[:attachment_key]
  @hide_attachment_filename = args[:hide_attachment_filename] || false
  @hide_attachment_filesize = args[:hide_attachment_filesize] || false
  @hide_attachment_url = args[:hide_attachment_url] || false
end