sticapi_client 3.5.3 → 3.5.4
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/lib/sticapi_client/pessoas.rb +7 -0
- data/lib/sticapi_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: 66eae5c647815be5f6bf684c3e568905472468f1fc0dae0271306eea2cb5b972
|
4
|
+
data.tar.gz: f3cf777e1a04608fffe3c726a9bbfe2d1351080796572d0c0f0250d8a3497703
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef3a382e3c32895d15515c34bb7e39c4867a484f7279fd1e2a32b6469bdd93d314b978cc23e6d8aac7d2b5010c9db1a30e1e9d27df66f4cc037fd1e975a02f0d
|
7
|
+
data.tar.gz: 0fdaab0e543224fa0d123b79f2734f534d02464b0687e0b830804ff01d585d90baf610e8b234e352e7d3b13d574635452c71fc5d65649c13183061a81a796c5a
|
@@ -128,5 +128,12 @@ module SticapiClient
|
|
128
128
|
options[:kind] = "get"
|
129
129
|
Sticapi::SticapiClient.instance.sticapi_request("/pessoas/unidade", options)
|
130
130
|
end
|
131
|
+
|
132
|
+
# Retorna os dados de todos os grupos de trabalho
|
133
|
+
# Retorno [JSON] Grupo de Trabalho e vinculados correspondentes
|
134
|
+
def self.grupo_trabalho(options = {})
|
135
|
+
options[:kind] = "get"
|
136
|
+
Sticapi::SticapiClient.instance.sticapi_request("/pessoas/grupo_trabalho", options)
|
137
|
+
end
|
131
138
|
end
|
132
139
|
end
|