UmbDocumentUserPermissionConditionConfig: UmbConditionConfigBase<"Umb.Condition.UserPermission.Document"> & {
    allOf?: string[];
    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"]
    
  • 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"]
    
""