adobe_connect_api 0.0.48.alpha → 0.0.49.alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/adobe_connect_api.rb +4 -4
- data/lib/adobe_connect_api/version.rb +1 -1
- metadata +1 -1
data/lib/adobe_connect_api.rb
CHANGED
|
@@ -123,10 +123,10 @@ class AdobeConnectAPI
|
|
|
123
123
|
puts "ACS: user created"
|
|
124
124
|
puts res.body
|
|
125
125
|
data = XmlSimple.xml_in(res.body)
|
|
126
|
-
|
|
127
|
-
puts
|
|
128
|
-
|
|
129
|
-
|
|
126
|
+
|
|
127
|
+
puts data["principal"].class
|
|
128
|
+
|
|
129
|
+
return AdobeConnectAPI::Result.new(data["status"][0]["code"], nil)
|
|
130
130
|
end
|
|
131
131
|
|
|
132
132
|
# create a new meeting in Adobe Connect
|