Skip to content

Instantly share code, notes, and snippets.

@ethangunderson
Created December 28, 2009 19:53
Show Gist options
  • Save ethangunderson/264881 to your computer and use it in GitHub Desktop.
Save ethangunderson/264881 to your computer and use it in GitHub Desktop.
class KeheDirect::Admin::I27ExportController < KeheDirect::Admin::AdminController
authorized_for :admin
def create
Cart.export_i27
response.headers['Content-Type'] = 'text/csv'
response.headers['Content-Disposition'] = 'attachment; filename=I-27.csv'
render :action => :new
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment