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
Add webhook_event table that has an compound fk to "type" (admin|event) and event_entity.id or admin_event_entity.id. Would require us to write a custom EventStoreProvider that gets the stored UUID and puts it somewhere (session attributes?) where we can get it.
Add a webhook_sent table that associates webhook_event_entity with webhook and sent_at, retries, final_status
Do I need to do this in keycloak-events, or can it all happen here?
Do I need to plug into the methods that remove/clear events? No, just set on delete cascade.
Only activate this by a config flag set on the WebhookSenderEventListenerProviderFactory
Looks like the event ID is added to the Event and AdminEvent objects.
webhook_event
table that has an compound fk to "type" (admin|event) andevent_entity.id
oradmin_event_entity.id
.Would require us to write a customEventStoreProvider
that gets the stored UUID and puts it somewhere (session attributes?) where we can get it.webhook_sent
table that associateswebhook_event_entity
withwebhook
andsent_at
,retries
,final_status
keycloak-events
, or can it all happen here?WebhookSenderEventListenerProviderFactory
Looks like the event ID is added to the
Event
andAdminEvent
objects.Started in #92
The text was updated successfully, but these errors were encountered: