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
Because we use a PUT request to update a tenant, we currently remove any existing webhooks.
Webhooks are not part of the Tenant struct, but are attached on the TenantRequest struct (see FusionAuth/fusionauth-issues#1984). Since we are already managing webhooks via the fusionauth_webhook resource, I don't think it's a good idea to add them to the tenant resource - furthermore, webhooks aren't available on the TenantResponse struct anyway.
If we use PatchTenant instead of UpdateTenant, this problem will go away. PR to follow.
The text was updated successfully, but these errors were encountered:
Related to #113
Because we use a
PUT
request to update a tenant, we currently remove any existing webhooks.Webhooks are not part of the Tenant struct, but are attached on the TenantRequest struct (see FusionAuth/fusionauth-issues#1984). Since we are already managing webhooks via the fusionauth_webhook resource, I don't think it's a good idea to add them to the tenant resource - furthermore, webhooks aren't available on the TenantResponse struct anyway.
If we use PatchTenant instead of UpdateTenant, this problem will go away. PR to follow.
The text was updated successfully, but these errors were encountered: