module ActiveAdmin::ResourceController::Streaming

def index

def index
  super do |format|
    format.csv { stream_csv }
    yield(format) if block_given?
  end
end