I have a site that's behind a login. Using the plugin for that
Within my restricted site I want one page to be accessible for a certain group of users only.
So I created a group (guest) for these users. I added the group to the users. End of yaml files look like this.
groups:
- guest
avatar: { }
hashed_password: removed
access:
site:
login: true
But how would that look? Starting point is this
Parent
access:
site.login: true
admin.login: true
login:
visibility_requires_access: true
The child page in question was
login:
visibility_requires_access: true
permissions:
inherit: true
On the child page I want to only allow group ' guest',
I would expect this to work, but it doesn´t
login:
visibility_requires_access: true
access:
site.login: true
admin.login: true
site.guest: true
Everyone has access :(