Skip to content

Commit 83d23e1

Browse files
committed
[BUG] 🐛 Fix cannot configure instance to accept fuzzy search
Signed-off-by: Cécile Chemin <cecile.chemin@insee.fr>
1 parent 1d96aed commit 83d23e1

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

sugoi-api-core/src/main/java/fr/insee/sugoi/core/service/impl/UserServiceImpl.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,14 @@ public void setReaderStoreAsynchronous(boolean readerStoreAsynchronous) {
425425
this.readerStoreAsynchronous = readerStoreAsynchronous;
426426
}
427427

428+
public boolean isFuzzySearchAllowed() {
429+
return fuzzySearchAllowed;
430+
}
431+
432+
public void setFuzzySearchAllowed(boolean fuzzySearchAllowed) {
433+
this.fuzzySearchAllowed = fuzzySearchAllowed;
434+
}
435+
428436
private List<String> findUserSeeAlsos(Realm realm, User user) {
429437
String[] seeAlsosAttributes =
430438
realm

0 commit comments

Comments
 (0)