cb-api 0.1.20 → 0.1.21
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/cb/clients/application_external_api.rb +2 -5
- data/lib/cb/version.rb +1 -1
- metadata +1 -1
@@ -13,13 +13,10 @@ module Cb
|
|
13
13
|
|
14
14
|
my_api = Cb::Utils::Api.new()
|
15
15
|
xml_hash = my_api.cb_post(Cb.configuration.uri_application_external, :body => app.to_xml)
|
16
|
-
my_api.append_api_responses(app, xml_hash
|
17
|
-
puts xml_hash
|
16
|
+
my_api.append_api_responses(app, xml_hash)
|
18
17
|
|
19
18
|
begin
|
20
|
-
|
21
|
-
app.apply_url = xml_hash["ResponseExternalApplication"]["ApplyUrl"] || ''
|
22
|
-
end
|
19
|
+
app.apply_url = xml_hash["ApplyUrl"] || ''
|
23
20
|
end
|
24
21
|
|
25
22
|
return app
|
data/lib/cb/version.rb
CHANGED