Hi all - I’m having trouble overriding wildcard user roles and was hoping for some help.
I only need two template types to be editable via the ‘editor’ user role, so firstly in the editor blueprint I’ve set this wildcard for all pages. According to the docs a wildcard can be set first and then whitelists applied as overrides.
blueprints/users/editor.yml
pages:
*: false
Then in the applicable template I’ve added this:
blueprints/pages/article.yml
title: Help Article
options:
update:
*: true
editor: true
changeTitle:
editor: true
create:
*: true
editor: true
But when logged in as an editor no pages show at all in the panel. What am I missing?
Thanks!