We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Use the programmatic way described here (keycloak/keycloak#24805) to build an Admin UI for managing Webhooks.
This method will cause a duplicate ComponentModel to be stored in the database. This means:
ComponentModel
onCreate
onUpdate
preRemove
ComponentFactory
WebhookModel
WebhooksResource
The text was updated successfully, but these errors were encountered:
Will also need to "migrate" all existing webhook entities so that they have components associated with them. Should be able to do this in a postInit.
postInit
Sorry, something went wrong.
xgp
No branches or pull requests
Use the programmatic way described here (keycloak/keycloak#24805) to build an Admin UI for managing Webhooks.
This method will cause a duplicate
ComponentModel
to be stored in the database. This means:onCreate
/onUpdate
/preRemove
methods ofComponentFactory
to create/update/remove theWebhookModel
entities.ComponentModel
to theWebhookModel
. E.g. store the component id in the webhook entity.ComponentModel
when theWebhookModel
gets updated by theWebhooksResource
management API.The text was updated successfully, but these errors were encountered: