Class: CentralMail::Configuration
Instance Attribute Summary
#base_request_headers, #open_timeout, #read_timeout, #request_types, #user_agent
Instance Method Summary
collapse
#breakers_error_threshold, #breakers_exception_handler, #breakers_matcher, #breakers_service, #create_new_breakers_service, #current_module, #request_options, #service_exception
Instance Method Details
#base_path ⇒ Object
7
8
9
|
# File 'lib/central_mail/configuration.rb', line 7
def base_path
"https://#{Settings.central_mail.upload.host}/VADocument"
end
|
#connection ⇒ Object
15
16
17
18
19
20
21
22
23
|
# File 'lib/central_mail/configuration.rb', line 15
def connection
Faraday.new(base_path) do |faraday|
faraday.use :breakers
faraday.request :multipart
faraday.request :url_encoded
faraday.adapter Faraday.default_adapter
end
end
|
#service_name ⇒ Object
11
12
13
|
# File 'lib/central_mail/configuration.rb', line 11
def service_name
'CentralMail'
end
|