-
Notifications
You must be signed in to change notification settings - Fork 107
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
[Enhancement] Use AttributeFilter to use newtonsoft only on the scim controllers #80
Comments
I would like to work on this if the maintainers approve |
Please go ahead, |
Can we get solution without Extension newsoft.json |
@RohitTopkhane Doable, but it would require whole |
- Some tweaking required - Fixes AzureAD#73 AzureAD#80
- Some tweaking required - Fixes AzureAD#73 AzureAD#80
Current implementation of the json serialization and de serialization forces user to add newtonsoft to the controllers globally which is a problem if someone tries to integrate the scim endpoints into their application that's using the default text.json library (starting from .net core 3.1) which doesn't support DataContract. In this case adding newtonsoft globally is a big no.
We can use the ActionFilterAttribute Class to ensure the scim endpoints use newtonsoft and the other endpoints keep working as it is.
The text was updated successfully, but these errors were encountered: