London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Navigation [hide] [expand]
Area: Optimizely Search & Navigation
ARCHIVED This content is retired and no longer maintained. See the latest version here.

Introduction

This document describes access rights filtering for an integration with EPiServer 7/7.5 CMS. The search engine does not apply any access rights filtering for documents such as pages or files. However, when using the EPiServer CMS integration, the return value from extension methods for IContent named RolesWithReadAccess and UsersWithReadAccess will be indexed. This means that we can filter out content that the current user should not be able to see.

Examples

An example of filtering using RolesWithReadAccess:

C#
SearchClient.Instance.Search<StandardPage>()
    .For("Possibly secret stuff")
    .Filter(x => x.RolesWithReadAccess().Match("Everyone"))
    .GetContentResult();

Last updated: Sep 21, 2015