sirportly 1.2.9 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/sirportly.rb +1 -1
- data/lib/sirportly/data_object.rb +1 -1
- metadata +1 -1
data/lib/sirportly.rb
CHANGED
@@ -8,7 +8,7 @@ module Sirportly
|
|
8
8
|
|
9
9
|
def all(client, options = {})
|
10
10
|
raise Sirportly::Error, "This object does not support a full list" if collection_path.nil?
|
11
|
-
result = client.request(collection_path,
|
11
|
+
result = client.request(collection_path, options)
|
12
12
|
DataSet.new(client, result, self)
|
13
13
|
end
|
14
14
|
|