Skip to content

Commit

Permalink
fixes initializations of content provider
Browse files Browse the repository at this point in the history
  • Loading branch information
tjuerge committed Mar 30, 2024
1 parent b6d4fe7 commit a8d0efd
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,13 @@ public LDAPStorageMapper create(KeycloakSession session, ComponentModel model) {

@Override
public void onCreate(KeycloakSession session, RealmModel realm, ComponentModel model) {
this.contentProvider = new ConfluenceContentProvider(session, model);
getContentCache(true);
}

@Override
public void onUpdate(KeycloakSession session, RealmModel realm, ComponentModel oldModel, ComponentModel newModel) {
this.contentProvider = new ConfluenceContentProvider(session, newModel);
getContentCache(true);
}

Expand Down

0 comments on commit a8d0efd

Please sign in to comment.