Muut
1
Hi is there a way I can give an admin user that isn’t a superadmin access to site config, or even better just one tab of the config? Eg:
access:
admin:
login: 'true'
super: 'false'
pages: 'true'
config: 'true'
Or better:
access:
admin:
login: 'true'
super: 'false'
pages: 'true'
config.site: 'true'
OR
config:
site: 'true'
Thanks
Muut
2
Use admin.configuration_site
(change _site
to any config route you want to allow access)
Muut
3
Hi, sorry I still can’t get this to work… I’ve tried:
access:
admin:
login: 'true'
super: 'false'
pages: 'true'
statistics: 'true'
configuration_site: 'true'
and
access:
admin.configuration_site: 'true'
but that user still can’t access the config file…
Muut
5
Yes multiple times. So that syntax was right?
Muut
6
This should work (tested):
access:
admin:
login: 'true'
super: 'false'
configuration: 'true'
configuration_site: 'true'
1 Like
Muut
7
Yes! That works, thank you. It was the configuration: true
it needed. Cheers