bloomy 0.9.0 → 0.10.0
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/bloomy/operations/users.rb +23 -0
- data/lib/bloomy/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: c37c4101db5cde3d7ccb8d650abeea58416383c131eb35b71a74878aec1c6e69
|
4
|
+
data.tar.gz: '04397e91d4acaf30dddf615d01464c234c87e940b22d00eb2678da63f82fdcba'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2e00f5ce8c4435083d1809b3663d810a5a2b296be289e873c82a44180cc324eb0b297607b9c6314f925adb9ba7e17aaea5dcfbcca20df07b10b06d5f0f8cef3
|
7
|
+
data.tar.gz: 47be893750490311029c294edc904468bc147e902dabc6dbb16634c5c76bfe5b005c0cf9386b57cb4012ff412f578979ef3d3fa28c259b663202b27a4b2958eb
|
@@ -78,4 +78,27 @@ class User
|
|
78
78
|
}
|
79
79
|
end
|
80
80
|
end
|
81
|
+
|
82
|
+
# Retrieves all users in the system
|
83
|
+
#
|
84
|
+
# @param include_placeholders [Boolean] whether to include users
|
85
|
+
# @return [Array<Hash>] an array of hashes containing user details
|
86
|
+
# @example
|
87
|
+
# user.all
|
88
|
+
# #=> [{id: 1, name: "John Doe", email: "john@example.com", ...}, ...]
|
89
|
+
def all(include_placeholders: false)
|
90
|
+
users = @conn.get("search/all", term: "%").body
|
91
|
+
users
|
92
|
+
.select { |user| user["ResultType"] == "User" }
|
93
|
+
.reject { |user| !include_placeholders && user["ImageUrl"] == "/i/userplaceholder" }
|
94
|
+
.map do |user|
|
95
|
+
{
|
96
|
+
id: user["Id"],
|
97
|
+
name: user["Name"],
|
98
|
+
email: user["Email"],
|
99
|
+
position: user["Description"],
|
100
|
+
image_url: user["ImageUrl"]
|
101
|
+
}
|
102
|
+
end
|
103
|
+
end
|
81
104
|
end
|
data/lib/bloomy/version.rb
CHANGED