Skip to content

Commit

Permalink
[BUG] 🐛 Fix cannot configure instance to accept fuzzy search
Browse files Browse the repository at this point in the history
Signed-off-by: Cécile Chemin <[email protected]>
  • Loading branch information
CChemin committed Aug 30, 2024
1 parent 1d96aed commit 83d23e1
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,14 @@ public void setReaderStoreAsynchronous(boolean readerStoreAsynchronous) {
this.readerStoreAsynchronous = readerStoreAsynchronous;
}

public boolean isFuzzySearchAllowed() {
return fuzzySearchAllowed;
}

public void setFuzzySearchAllowed(boolean fuzzySearchAllowed) {
this.fuzzySearchAllowed = fuzzySearchAllowed;
}

private List<String> findUserSeeAlsos(Realm realm, User user) {
String[] seeAlsosAttributes =
realm
Expand Down

0 comments on commit 83d23e1

Please sign in to comment.