-
Notifications
You must be signed in to change notification settings - Fork 15
Enable ServiceProviderConfig GET request #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
f854774
to
e981be7
Compare
I'm missing a requirement from the spec: "To enable seamless discovery of configurations, the service provider should, with the appropriate security considerations, make the authenticationSchemes attribute publicly accessible without prior authentication." The current implementation requires authentication, the code should make usage of the GET_IS_AUTHENTICATED_PREDICATE from django_scim app or custom csrf_exempt. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@f-trivino thanks for the PR. Please find my inline comments
4213674
to
de6a7c8
Compare
1a14c7a
to
c9df679
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @f-trivino
can you add a note in the README.me, just before If connecting from another system, update the ALLOWED_HOSTS
:
Edit root/settings.py and update the 'NETLOC':'localhost' line with the name of the machine where the django server is running. This will appear as "location": "https://NETLOC/scim/v2/ServiceProviderConfig" in the output returned by a GET operation on /scim/v2/ServiceProviderConfig
c9df679
to
97a60cf
Compare
This commit enables the /ServiceProviderConfig endpoint for GET requests to view additional information about the ipa-tuura supported features. The endpoint is read only.
97a60cf
to
f40ec1f
Compare
@flo-renaud thanks for the review, I addressed all your comments, I think the PR is ready now. |
@f-trivino thanks, ACK. |
This commit enables the /ServiceProviderConfig endpoint for GET requests to view additional information about the ipa-tuura supported features.
The endpoint is read only.