Skip to content

Display SCIM identities in the identity table

Eduardo Sanz García requested to merge eduardosanz/add-scim-identities into master

What does this MR do and why?

For EE admins, SCIM identities are now shown under Admin > Overview > Users > USER > identity tab

Related to #294608 (closed)

Screenshots or screen recordings

image

How to set up and validate locally

Create SCIM identities using the bin/rails console:

group = Group.find_by_full_path('flightjs')
user = User.find_by_username('foo')
identity = ScimIdentity.create(group: group, user: user, active: true, extern_uid: user.username)

Go to the https://gdk.test:3443/admin/users/[foo]/identities

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Edited by Eduardo Sanz García

Merge request reports

Loading