Class: EventExceptionsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/event_exceptions_controller.rb

Instance Method Summary collapse

Instance Method Details

#downloadObject



15
16
17
18
# File 'app/controllers/event_exceptions_controller.rb', line 15

def download
  ex = find_if_allowed(params[:id], :read)
  send_data ex.attributes.to_yaml, filename: download_filename(ex)
end