Class: EmailExport

Inherits:
AjaxExport show all
Defined in:
app/service_adaptors/email_export.rb

Constant Summary

Constants inherited from Service

Service::LinkOutFilterTask, Service::StandardTask

Instance Attribute Summary

Attributes inherited from Service

#group, #name, #priority, #request, #service_id, #status, #task, #url

Instance Method Summary collapse

Methods inherited from AjaxExport

#handle, #response_url, #service_types_generated

Methods inherited from Service

#credits, #display_name, #handle, #handle_wrapper, #link_out_filter, #preempted_by, required_config_params, #response_url, #service_types_generated, #translate

Constructor Details

#initialize(config) ⇒ EmailExport

Returns a new instance of EmailExport.



3
4
5
6
7
8
9
# File 'app/service_adaptors/email_export.rb', line 3

def initialize(config)
  @display_text ||= "Email"
  @display_text_i18n ||= "display_text"
  @form_controller ||= "export_email"
  @form_action ||= "email"
  super(config)
end