Disallow Site Page Creation but Allow Specific Pages

Hi, I want to disable the page creation for “editors” in general under the default site panel (site.yml), and allow the page creation for “editors” in specific pages, for example on “projects”. How do I get this?

In my “editor.yml” I disabled “create” under “pages”. And in my “projects.yml” I enabled “create” for the editors, but it feels like the permissions get not overwrited.

site/blueprints/users/editor.yml

title: Editor
permissions:
  pages:
    create: false

site/blueprints/pages/projects.yml

title: Projects

options:
  create:
    editor: true

tabs:
...

Yes, unfortunately, you cannot overwrite this setting on a per blueprint basis if set to false in the user blueprint, no idea why. So you would have to set this in every blueprint individually instead for the time being.