Skip to content
Snippets Groups Projects
Commit f5a3baf5 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Remove unused dbp-auth-keycloak-data-update event

parent 01d06876
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,6 @@ npm i @dbp-toolkit/auth
### Events to listen to
- `dbp-auth-person-init`: Keycloak person init event - the person entity was loaded from the server
- `dbp-auth-keycloak-data-update`: Keycloak data was updated - happens for example every time after a token refresh
## Login Button
......
......@@ -45,7 +45,6 @@ export class AuthKeycloak extends AdapterLitElement {
// Create the events
this.personInitEvent = new CustomEvent("dbp-auth-person-init", { "detail": "KeyCloak person init event", bubbles: true, composed: true });
this.keycloakDataUpdateEvent = new CustomEvent("dbp-auth-keycloak-data-update", { "detail": "KeyCloak data was updated", bubbles: true, composed: true });
this._onKCChanged = this._onKCChanged.bind(this);
}
......@@ -133,8 +132,6 @@ export class AuthKeycloak extends AdapterLitElement {
});
}, {}, that.lang);
}
this.dispatchEvent(this.keycloakDataUpdateEvent);
}
sendSetPropertyEvents() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment