You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This interface can be added to scim.ServerOption or scim.ServerArgs. This should allow supporting calculating ETag with one specific function
Client code will need to implement the ETag function. If not, the server should warn that ETag function is nil.
If you don't have plan to support ETag, would you be open to adding a SupportEtag field to ServiceProviderConfig so that the service configuration for ETag can be customized by client code?
The text was updated successfully, but these errors were encountered:
Do you consider supporting ETag and embed ETag value to the response header?
I know ETag calculation varies, so I would propose an interface function that accepts an entity (User or Group), and returns a string as ETag:
This interface can be added to
scim.ServerOption
orscim.ServerArgs
. This should allow supporting calculating ETag with one specific functionClient code will need to implement the ETag function. If not, the server should warn that ETag function is
nil
.If you don't have plan to support ETag, would you be open to adding a
SupportEtag
field toServiceProviderConfig
so that the service configuration for ETag can be customized by client code?The text was updated successfully, but these errors were encountered: