audiences 1.5.1 → 1.5.3
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/contexts_controller.rb +8 -5
- data/app/controllers/audiences/scim_proxy_controller.rb +12 -2
- data/app/models/audiences/external_user.rb +2 -2
- data/app/models/audiences/users_search.rb +2 -2
- data/docs/CHANGELOG.md +8 -0
- data/lib/audiences/configuration.rb +7 -0
- data/lib/audiences/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2128c153d299dd4a2fa4f94d5830dcf883cbf0b1b9300ca0905d0b5816fcc53
|
4
|
+
data.tar.gz: feb6f90c5e3cf41e4331fce62cca0b8fb42cb94f1570283f4b760beec23a1a36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7831f938d1841653b4829f8726bcdd491888a048e633fc98fe45a7978e9fb5cb789f5d420ace6b18d66d75782c6a87da4437b046c5a54a0c772b153f2f718eaf
|
7
|
+
data.tar.gz: 258c57d51a40fa73560ac5c2a01dedbc567923956fa5f237de8bd714c97f8cdeac95b9aab13fdf7bfb4c60a5b21d23e2fa681072318565c127ab93a9ee36a409
|
@@ -17,7 +17,7 @@ module Audiences
|
|
17
17
|
limit: params[:limit],
|
18
18
|
offset: params[:offset])
|
19
19
|
|
20
|
-
render json: search
|
20
|
+
render json: search, only: Audiences.exposed_user_attributes
|
21
21
|
end
|
22
22
|
|
23
23
|
private
|
@@ -33,11 +33,14 @@ module Audiences
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def render_context(context)
|
36
|
-
|
37
|
-
only: %i[match_all
|
36
|
+
json_setting = {
|
37
|
+
only: %i[match_all],
|
38
38
|
methods: %i[count],
|
39
|
-
include: { criteria: { only: %i[id groups], methods: %i[count] } }
|
40
|
-
|
39
|
+
include: { criteria: { only: %i[id groups], methods: %i[count] } },
|
40
|
+
}
|
41
|
+
extra_users = context.extra_users.as_json(only: Audiences.exposed_user_attributes)
|
42
|
+
|
43
|
+
render json: { extra_users: extra_users, **context.as_json(json_setting) }
|
41
44
|
end
|
42
45
|
|
43
46
|
def context_params
|
@@ -5,12 +5,22 @@ module Audiences
|
|
5
5
|
def get
|
6
6
|
resources = Audiences::Scim.resource(params[:scim_path].to_sym)
|
7
7
|
.query(
|
8
|
-
filter:
|
8
|
+
filter: filter_param,
|
9
9
|
startIndex: params[:startIndex], count: params[:count],
|
10
|
-
attributes: "
|
10
|
+
attributes: Audiences.exposed_user_attributes.join(",")
|
11
11
|
)
|
12
12
|
|
13
13
|
render json: resources, except: %w[schemas meta]
|
14
14
|
end
|
15
|
+
|
16
|
+
private
|
17
|
+
|
18
|
+
def filter_param
|
19
|
+
if params[:query]
|
20
|
+
"displayName co \"#{params[:query]}\""
|
21
|
+
else
|
22
|
+
params[:filter]
|
23
|
+
end
|
24
|
+
end
|
15
25
|
end
|
16
26
|
end
|
data/docs/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Unreleased
|
2
2
|
|
3
|
+
# Version 1.5.3 (2024-12-19)
|
4
|
+
|
5
|
+
- Rollback breaking change introduced by 1.5.1 [#479](https://github.com/powerhome/audiences/pull/479)
|
6
|
+
|
7
|
+
# Version 1.5.2 (2024-12-19)
|
8
|
+
|
9
|
+
- Filter sensitive user data out of user list response [#473](https://github.com/powerhome/audiences/pull/473)
|
10
|
+
|
3
11
|
# Version 1.5.1 (2024-12-12)
|
4
12
|
|
5
13
|
- Fix SCIM proxy attributes format [#462](https://github.com/powerhome/audiences/pull/462)
|
@@ -5,6 +5,13 @@ module Audiences
|
|
5
5
|
|
6
6
|
# Configuration options
|
7
7
|
|
8
|
+
# These are the user attributes that will be exposed in the audiences endpoints.
|
9
|
+
# They're required by the UI to display the user information.
|
10
|
+
#
|
11
|
+
config_accessor :exposed_user_attributes do
|
12
|
+
%w[id externalId displayName photos]
|
13
|
+
end
|
14
|
+
|
8
15
|
#
|
9
16
|
# Authentication configuration. This defaults to true, meaning that the audiences
|
10
17
|
# endpoints are open to the public.
|
data/lib/audiences/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: audiences
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Carlos Palhares
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
93
|
- !ruby/object:Gem::Version
|
94
94
|
version: '0'
|
95
95
|
requirements: []
|
96
|
-
rubygems_version: 3.5.
|
96
|
+
rubygems_version: 3.5.23
|
97
97
|
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: Audiences system
|