Configure document state filters
Adobe Experience Manager Guides provides the feature to search a file based on its current document state. You can use filter search to search files from the repository interface to browse files.
Perform the following steps to configure the document state filters:
-
Log into Adobe Experience Manager as an Administrator.
-
Select the Adobe Experience Manager link at the top and choose Tools.
-
Select Guides from the list of tools and then select Folder Profiles.
-
Open the Global Profile tile. You can also select a specific Folder profile tile if you want these changes to apply only to that folder instead of globally.
-
Navigate to XML Editor Configuration.
-
Select the Edit icon on the top.
-
Select the Download icon to download the
ui\_config.jsonfile on your local system.
In the downloadedui\_config.jsonfile, refer to the following section:code language-none ``` "repositoryFilters": [ { "title": "Document state", "property": "jcr:content/metadata/docstate", "children": [ { "title": "Draft", "value": "Draft" }, { "title": "Edit", "value": "Edit" }, { "title": "In-Review", "value": "In-Review" }, { "title": "Approved", "value": "Approved" }, { "title": "Reviewed", "value": "Reviewed" }, { "title": "Done", "value": "Done" } ] } ] ```This snippet represents the default document state filters available in Experience Manager Guides.
-
You can customize the filter values based on your organization’s workflow. For example, to add a custom document state Pending, insert the following entry under
children:code language-none { "title": "Pending", "value": "Pending" } -
Once updated, save the file and upload it.
The configured filters are displayed in the Filters panel in Repository on Home page.
Parent topic:Customize Web Editor