96 results found
-
Regenerate Content Graph keys and secrets through Paas portal
Clients should have the ability to regenerate Content Graph keys and secrets in the self-service Paas portal.
5 votesGood news - this idea is now being explored by our product and design teams. We’re researching potential solutions and scoping out what an implementation might look like. We’ll share updates here as our thinking evolves.
-
Support for Trash Status Filtering via exposing _deleted property in query filters to improve duplicate result handling
We have use cases where we need to search content to determine if an item is in the Trash. Currently, we use the cg-include-deleted: true header as described in the documentation. However, we have observed that duplicate results are returned from the Graph for Content() items.
One result represents the original location (tombstone marker) with the property _deleted: null, while the most recent version in the index has _deleted: true.
Although we can filter out duplicates on the client side, this approach is not ideal.
We would like the _deleted property to be available as part of ContentWhereInput so that…4 votesGood news - this idea is now being explored by our product and design teams. We’re researching potential solutions and scoping out what an implementation might look like. We’ll share updates here as our thinking evolves.
-
Syncing folder types/names to GraphQL index
We have a need to query content under certain folder from GraphQL API. At the moment we can query the parent GUIDs from a block, but it only returns a list of GUIDs. It returns them in a certain order, so it is possible to find out from there which is which folder, but it would be easier if we could query also the name of the folder. At the moment GraphQL API does not index the folder information, so we would like the folder information also to be synced to the index.
4 votesGood news - this idea is now being explored by our product and design teams. We’re researching potential solutions and scoping out what an implementation might look like. We’ll share updates here as our thinking evolves. Please do update with any further ideas or comments
-
'Stop words' feature in Optimizely Graph
We need to stop few words from search or indexing. For example, in case of search term 'having a baby' also brings results with 'a' which does not make sense. We are looking for a similar feature like 'synonyms'. We have been advised in the ticket reference 1748761 (https://support.optimizely.com/hc/en-us/requests/1748761) to raise a feature request to bring this feature back as its currently deprecated. We are from Publicis Sapient and working for St Luke's digital transformation project.
The below document does not have enough details in the API call with PUT method. Also it says the feature is deprecated.
…
1 voteGood news - this idea is now being explored by our product and design teams. We’re researching potential solutions and scoping out what an implementation might look like. We’ll share updates here as our thinking evolves.
-
multi select from dam
When choosing files through the DAM picker, I'd like to be able to select multiple assets at once.
5 votes -
App Insights alerts
Self-serve creation of alerts in App Insights based on specific thresholds exceeding a limit will help be proactive in responding to potential performance issues or other problems
8 votes -
Allow ancestor/children links in Content Areas in Content Graph
I am looking to get the parent/children of a content item that is used within a Content Area to support a hierarchical relationship. Currently, it is not possible to use the _link property on Content Areas within Content Graph.
In this query:
query MyQuery { MyPage(where:{ContentLink:{Id:{eq: 1119}}}) { item { ContentLink { Id } _link(type: ANCESTORS) { MyParentPage { items { Url } } } } } MyBlock(where:{ContentLink:{Id: {eq:1127}}}) { items { Cards { ContentLink { Id Expanded { _link(type: ANCESTORS) { MyParentPage { items { Url } } } } } } } } }In the first query,…
3 votesThanks for sharing this idea. Our product and design teams are looking into it now. We’re exploring possible solutions and figuring out what implementation could involve. We’ll keep you posted here as things progress.
-
Add live documents to library (e.g. word
It would be useful to be able to edit live documents in the library that can then be added to tasks or campaigns before they are completed.
3 votes -
Keyboard shortcuts to speed up workflows
When editing in CMS, it takes a couple of clicks to open and close menus, hit publish. It'd be very helpful if we could just hit a keyboard combo to publish a page after an edit
1 vote -
Add the option to use local time in the CMS instead of UTC
When adding a time from a Date/Time-picker in the CMS, you select one value, and then another value displays out on the website.
This is because you display UTC in the CMS and the browser then changes the time to local time out on the web. However this is extremely cumbersome for editors, since they need first of all be aware of this, and second of all think one extra step.
It would therefore be great if there was a solution for this, for example a setting to always display local time inside the CMS.2 votes -
AllowedTypes for blocks added in Xhtml editor using the 'Add local block' button
It would be nice to be able to filter the selection of blocks to be created using the "Add local block" button in TinyMCE in the same way as when creating a new page or adding a block in a content area.
1 vote -
Developer Blob Storage for Optimizely CMS DXP
Hi
I was surprised to find that DXP does not offer a simple, developer-friendly blob storage solution for teams. A team of 3-5 developers needs a shared blob storage on their local machines to access images from the cloud without manually downloading massive datasets.
This does not need to be expensive, no redundancy required, just a basic storage option accessible via HTTPS with a connection string and token, of say: 80GB should be fine for 94% of your customers. Ideally, it should also support firewall restrictions configurable via the PaaS portal.
Expecting developers to manually download 20-50GB every month using…1 vote -
Granular Access Rights for CMS Settings Area
In the Settings area anyone with the "CMSAdmin" or "Content Admins" has access to the full rights to edit anything in here.
We should be able to set granular rights to these function areas for example if I want a specific user group to be able to make updates to Content Types but not Manage Website and Access Right this should be possible2 votes -
Quick edit blocks inside TinyMCE
When you click edit on a block inside TinyMCE the CMS navigates to the content. It would be nice for editors to offer an option to quick edit blocks like you can do for blocks inside Content Areas
7 votes -
Is there any way to identify the user who changed the access rights?
Is there a way to track or identify the user who modified the access rights in Episerver/CMS? It appears that someone has changed the access permissions using the 'Set Access Rights' feature.
We need to determine who made these changes to ensure proper access control and prevent unauthorized modifications. Is there any audit log, system event tracking, or CMS activity history that can help us trace the user responsible for this action? Any insights or recommendations on how to retrieve this information would be greatly appreciated.3 votes -
Enhance the Audience Feature to display the affected number of items
Audience groups should include the dependent items that use them, similar to blocks, this will give visibility to authors on all the effect areas where that personalization was used when a change is made
4 votes -
Alert author when moving page results in duplicate url
When creating child pages and moving them to be the same level as the parent results in duplicate url, alert the author that moving will result in a duplicate url and require the author to make a change.
Steps to recreate:
1. create a parent page titled Monday Tips (url ends with /monday.tips
2. create a child page called Monday Tips (url ends with /monday.tips/monday.tips
3. moving the child page to be a at the same level as the parent would result in a duplicate url (/monday.tips. Opti doesn't allow duplicates and appends a numeric value to the end of…2 votes -
Make LoadContentAsync and LoadChildrenReferencesAndTypesAsync return Task<>
When I inherit from ContentProvider I need to override LoadContent and LoadChildrenReferencesAndTypes. These two methods are not async which means that I can't use async/await in those methods. If below methods existed I could override them instead and use async/await in my implementation.
Task<IContent?> LoadContentAsync
Task<IList<GetChildrenReferenceResult>> LoadChildrenReferencesAndTypesAsync
I know I can use Task.Run( to call async methods but It's not recommended.
Here is some guidelines from David Fowler who works with .NET at Microsoft.https://github.com/davidfowl/AspNetCoreDiagnosticScenarios/blob/master/AsyncGuidance.md#avoid-using-taskresult-and-taskwait1 vote -
Can we consider allowing frontend URL for media assets?
We are running a setup with a separate edit and frontend servers.
When assets are added to Optimizely Graph, the asset URL is always updated to be the edit server URL?not the frontend server. At first, I thought this was a mistake, but having dug into the code I see it?s intentional.
The RewriteAssetHostInitialization (Optimizely.ContentGraph.Cms.NetCore.Core explicitly switches the host for assets from the frontend to the edit server.
Could we make this optional via a configuration option?1 vote -
Granular Permissions for CMS Admin Tools
We have a client that wants to only give users only access to certain tools in the CMS/Admin area, IE the ability to Import/Export.
To the best of my knowledge this permission is specified in the EPiServer.CMS.Admin.UI module and is set to episerver:cmsadmin.
I've attempted to override settings using our own instance of AdminModule, but haven't had any luck. I know I can intercept/remove MenuItems, but I believe I will be unable to prevent users from actual accessing the content with a URL.
It would be great to be able to set these permissions at a more granular level at…1 vote
- Don't see your idea?