🌱 The next big step: Kirby 4 Beta Learn more
Skip to content

New permissions

New access and list page permissions

Changes

  • read option will be deprecated in Kirby 5
  • access option is about accessibility
  • list option is about visibility (picker and sections)
  • access and list permissions depend on the read option until Kirby 5

Meaning

access: false # not accessible, not listed
list: false   # accessible, not listed
read: false   # not accessible, not listed

Sample Usage

# Orders page is not accessible and not visible for all roles except admins.

title: Orders

options:
  access:
    *: false
    admin: true
  list:
    *: false
    admin: true

Permissions for new features

  • New changeTemplate permission for files
  • New move permission for pages