@umbraco-cms/backoffice
    Preparing search index...

    Type Alias UmbDocumentUserPermissionConditionConfig

    UmbDocumentUserPermissionConditionConfig: UmbConditionConfigBase<
        "Umb.Condition.UserPermission.Document",
    > & { allOf?: string[]; ignorerUserStartNodes?: boolean; oneOf?: string[] }

    Type Declaration

    • OptionalallOf?: string[]

      The user must have all of the permissions in this array for the condition to be met.

      ["Umb.Document.Save", "Umb.Document.Publish"]
      
    • OptionalignorerUserStartNodes?: boolean

      If true, the condition will ignorer the user start-node check and only check the permissions. Use this carefully, as this will permit access for Documents that are outside the user's start-node scope.

      false
      
    • OptionaloneOf?: string[]

      The user must have at least one of the permissions in this array for the condition to be met.

      ["Umb.Document.Save", "Umb.Document.Publish"]