filebound_client 0.3.0 → 0.3.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/filebound_client/endpoints/routed_items.rb +8 -0
- data/lib/filebound_client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da2595d81baa79573163bb00a9ad7d0bfc51fef38e629bbe91a40c786a735e81
|
4
|
+
data.tar.gz: ae877807f57a5b534a7dcbc2c7eb68a866fcc97d74e0e5244f0dddb7e0ce225b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a0408600f6c72a6f125a523c8bbf2d71e4ea740ec9e5df5884ca9a4e79a8e17644f0cac4b94162166904a712121c24800ab3a4464205c606bbe1579565ecae2
|
7
|
+
data.tar.gz: 9e8bc0d1a6df750fc9178436115ecf69bbce22244d84a1a04678c465ca26df21d32df1ffc3ad28e5e3fd9e6efbcf6045b3787a4ecd0f8912934f70193e354a0f
|
data/CHANGELOG.md
CHANGED
@@ -9,6 +9,14 @@ module FileboundClient
|
|
9
9
|
end
|
10
10
|
end
|
11
11
|
|
12
|
+
# Retrieves a single routed item by its key
|
13
|
+
# @param [int] routed_item_id the routed item key
|
14
|
+
# @param [Hash] query_params additional query params to send in the request
|
15
|
+
# @return [Project] routed_item object
|
16
|
+
def routed_item(routed_item_id, query_params = nil)
|
17
|
+
get("/routeditems/#{routed_item_id}", query_params)
|
18
|
+
end
|
19
|
+
|
12
20
|
# Edits a routed item. The routed_item.id must be not nil and > 0.
|
13
21
|
# @param [Hash] routed_item the routed item to edit
|
14
22
|
# @return [nil]
|