class Avo::AttachmentsController

def create

def create
  blob = ActiveStorage::Blob.create_and_upload! io: params[:file], filename: params[:filename]
  @model.send(params[:attachment_key]).attach blob
  render json: {
    url: main_app.url_for(blob),
    href: main_app.url_for(blob)
  }
end

def destroy

def destroy
  blob = ActiveStorage::Blob.find(params[:signed_attachment_id])
  attachment = blob.attachments.find_by record_id: params[:id], record_type: @model.class.to_s
  if attachment.present?
    attachment.destroy
    redirect_to params[:referrer] || resource_path(@model), notice: t("avo.attachment_destroyed")
  else
    redirect_back fallback_location: resource_path(@model), notice: t("avo.failed_to_find_attachment")
  end
end

def show

def show
end