Class: Spree::Admin::PromotionCodeBatchesController
- Inherits:
-
ResourceController
- Object
- ResourceController
- Spree::Admin::PromotionCodeBatchesController
- Defined in:
- lib/controllers/backend/spree/admin/promotion_code_batches_controller.rb
Instance Method Summary collapse
Instance Method Details
#download ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/controllers/backend/spree/admin/promotion_code_batches_controller.rb', line 10 def download require "csv" @promotion_code_batch = Spree::PromotionCodeBatch.find( params[:promotion_code_batch_id] ) send_data( render_to_string, filename: "promotion-code-batch-list-#{@promotion_code_batch.id}.csv" ) end |