15 lines
355 B
Ruby
15 lines
355 B
Ruby
require 'csv'
|
|
|
|
class JamTrackController < ApplicationController
|
|
|
|
respond_to :html
|
|
|
|
def dump_released
|
|
headers['Content-Disposition'] = "attachment; filename=\"released-jam-tracks.csv\""
|
|
headers['Content-Type'] ||= 'text/csv'
|
|
|
|
@jam_tracks = JamTrack.where(status: 'Production')
|
|
render "jam_track/dump_released", :layout => nil
|
|
end
|
|
|
|
end |