Full-text search work for entities of the framework security subsystem: Role
, Group
and User
.
Is there a way to exclude this entities of being indexed?
I tried:
<entity class="com.haulmont.cuba.security.entity.User">
<searchableIf>false</searchableIf>
</entity>
<entity class="com.haulmont.cuba.security.entity.Group"">
<searchableIf>false</searchableIf>
</entity>
<entity class="com.haulmont.cuba.security.entity.Role">
<searchableIf>false</searchableIf>
</entity>
But it checks all these entities when they are created. Is there a way for fts not to check this entities at all?