catarse / dbhero

DBHero is a simple and elegant web interface to extract data clips from your app database. just plug and play ;)
MIT License
58 stars 13 forks source link

Rails 5 export CSV problem #8

Open adolfopeccin opened 6 years ago

adolfopeccin commented 6 years ago

Hello, After upgrading to Rails 5, the export CSV has broken.

Fixed it changing

format.csv do
   send_data @dataclip.csv_string, type: Mime::CSV, disposition: "attachment; filename=#{@dataclip.token}.csv"
end

to

format.csv do
   send_data @dataclip.csv_string, type: Mime[:csv], disposition: "attachment; filename=#{@dataclip.token}.csv"
end