audiences 1.5.0 → 1.5.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/app/controllers/audiences/scim_proxy_controller.rb +1 -1
- data/docs/CHANGELOG.md +4 -0
- data/lib/audiences/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: cc9cb9024b5cab607920dd047795f19189182930353a83858b1b79f6bb22504a
|
|
4
|
+
data.tar.gz: 7e80900217731f751536eb792272c44645aaf6bc35458ed705c4c39d7e0f3fc1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f922b463a9edcf52d3d91492c753415185cd2813f87eb03def29c1b59c9ca7d1a63ac456b274550b974e7b5b62f9451a8848e0e74984cfa865ae869ac69ad67c
|
|
7
|
+
data.tar.gz: 11edb03700fc296188521adb6f3a77587b8491ed1786fe20ff1f3ad9a3e95b2fb2d6f1a8f5ef557096fec2acfa2d286edacba37c53de293298ebc60c5d743754
|
|
@@ -7,7 +7,7 @@ module Audiences
|
|
|
7
7
|
.query(
|
|
8
8
|
filter: "displayName co \"#{params[:filter]}\"",
|
|
9
9
|
startIndex: params[:startIndex], count: params[:count],
|
|
10
|
-
attributes:
|
|
10
|
+
attributes: "id,externalId,displayName,photos"
|
|
11
11
|
)
|
|
12
12
|
|
|
13
13
|
render json: resources, except: %w[schemas meta]
|
data/docs/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Unreleased
|
|
2
2
|
|
|
3
|
+
# Version 1.5.1 (2024-12-12)
|
|
4
|
+
|
|
5
|
+
- Fix SCIM proxy attributes format [#462](https://github.com/powerhome/audiences/pull/462)
|
|
6
|
+
|
|
3
7
|
# Version 1.5.0 (2024-12-12)
|
|
4
8
|
|
|
5
9
|
- SCIM proxy will only return data used by the UI [#451](https://github.com/powerhome/audiences/pull/451)
|
data/lib/audiences/version.rb
CHANGED