Class: MrCommon::Registrations::ExportController

Inherits:
BaseController show all
Defined in:
app/controllers/mr_common/registrations/export_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



6
7
8
9
10
11
# File 'app/controllers/mr_common/registrations/export_controller.rb', line 6

def index
  send_data(
    Registration.as_csv(format_rules: Registration.try(:csv_format_rules)),
    filename: "Registrations-#{Date.today}.csv"
  )
end