feat(scim): Serve a minimal SCIM User resource - #2670
Open
xlgmokha wants to merge 1 commit into
Open
Conversation
xlgmokha
marked this pull request as ready for review
August 3, 2026 20:53
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 4, 2026 16:18
5c30fe8 to
105842b
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 4, 2026 16:43
105842b to
5c30fe8
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 4, 2026 16:46
5c30fe8 to
681e3de
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 4, 2026 17:19
681e3de to
8d5ab8e
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 4, 2026 17:27
8d5ab8e to
aef7060
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 4, 2026 19:52
aef7060 to
605a241
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 4, 2026 20:05
605a241 to
76e14c9
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 6, 2026 15:34
76e14c9 to
e43f8da
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 6, 2026 18:07
e43f8da to
d01a1ec
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
2 times, most recently
from
August 6, 2026 19:47
0c91448 to
71e3963
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 10, 2026 15:55
afcc9c2 to
77cc6af
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 10, 2026 22:50
77cc6af to
223c123
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 12, 2026 15:29
223c123 to
210713b
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 12, 2026 16:57
210713b to
e04c509
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
2 times, most recently
from
August 12, 2026 17:13
81135e6 to
32ecad6
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
2 times, most recently
from
August 12, 2026 22:31
289d59c to
cd7a474
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 12, 2026 23:00
54f3478 to
c94ceb6
Compare
This was referenced Aug 17, 2026
xlgmokha
force-pushed
the
xlgmokha/auth-1368a
branch
from
August 17, 2026 19:59
6277756 to
af12f51
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What kind of change does this PR introduce?
Feature. This serves
GET /scim/v2/Users/{id}and the UserResourceTypeandSchema, behindGOTRUE_EXPERIMENTAL_SCIM_ENABLED.What is the current behavior?
The
/scim/v2router ships dark behindGOTRUE_EXPERIMENTAL_SCIM_ENABLEDand serves/ServiceProviderConfig,/ResourceTypesand/Schemas.There is no way to read a provisioned user, and no authentication on the subtree.
What is the new behavior?
GET /scim/v2/Users/{id}returns the SCIM User for a user provisioned by one SSO provider, scoped so a provider can only see its own users./ResourceTypes/{id}and/Schemas/{id}serve the User resource type and its schema.The project admin token authenticates the request, and a temporary
x-scim-provider-idheader names the tenant. A per-provider SCIM token will replace this in a followup PR.