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
{{ message }}
This repository was archived by the owner on Jul 30, 2021. It is now read-only.
As show in issue #38 when a 409 is received from provisioning a user, we currently raise a Validic::Errors::Conflict which is the correct behavior but we do not currently pass through the body of the message which has valuable context.
In this example, the body would be:
{
"code": 409,
"message": "Your organization is limited to 25 users"
}
I would think the error would be raised as:
raiseConflict,"Your organization is limited to 25 users"
Where that string is coming from the response body's 'message' key.