fixed inst entry point
This commit is contained in:
parent
7f41446558
commit
42fd64022c
1 changed files with 2 additions and 2 deletions
|
@ -84,8 +84,8 @@ public class InfoController {
|
||||||
.getOrThrow()
|
.getOrThrow()
|
||||||
.stream()
|
.stream()
|
||||||
.filter(inst -> BooleanUtils.isTrue(inst.active) &&
|
.filter(inst -> BooleanUtils.isTrue(inst.active) &&
|
||||||
(inst.urlSuffix == null ||
|
inst.urlSuffix != null &&
|
||||||
urlSuffix.equals(inst.urlSuffix)))
|
urlSuffix.equals(inst.urlSuffix))
|
||||||
.map(inst -> new EntityName(inst.getEntityKey(), inst.name))
|
.map(inst -> new EntityName(inst.getEntityKey(), inst.name))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue