Hi everyone,
I'm using episerver find and I just add ServiceApi to the project. Since then UnifiedSearch stops working. I've compared the requests , and the only difference is that whenever I have serviceapi in my project, in the fillter I have following term in filter
{"term": {"UsersWithReadAccess$$string.lowercase": "" } }, {"terms": {"RolesWithReadAccess$$string": [] } }
and it should be like following to work:
{"term": {"UsersWithReadAccess$$string.lowercase": "msh" } }, {"terms": {"RolesWithReadAccess$$string": ["WebAdmins","Administrators","Everyone","Authenticated","CmsAdmins","PackagingAdmins" ] } }
Does anyone have any Idea how to fix this?