--- title: li-desknet-integration description: "Legacy plugin to connect Desk-Net stories with Livingdocs documents using a publication platform." --- ## Supported Features | Feature | Supported | | ------- | :-------: | | Document | ✔ | | Media | ✗ | | Include | ✗ | | Document Creation Flow | ✗ | | Push Message | ✗ | | Usage Log | ✗ | | Table Dashboard | ✔ | | Display Filter | ✗ | | Search Indexing | ✔ | | System Metadata | ✗ | | Planning System | ✗ | | Webhook Conditions | ✗ | ## Description > [!WARNING] > Desk-Net rebranded as Kordiam. Consequently, `li-desknet-integration` has been deprecated as of [`release-2024-11`](/operations/releases/release-2024-11/) and will be removed in [`release-2025-05`](/operations/releases/release-2025-05/). Please use [`li-kordiam-integration`](/reference/document/metadata/plugins/li-kordiam-integration/llms.txt) instead. For more details, refer to our [Desk-Net to Kordiam migration guide](/guides/integrations/desknet-to-kordiam-migration/llms.txt). This plugin is used to connect Desk-Net stories with Livingdocs documents. There are numerous options available to synchronise data between the two platforms. Further details can be found in the [Desk-Net Platform Integration Guide](/guides/integrations/desknet-legacy/llms.txt). ## Default UI **Document Metadata**: Read-only link to Desk-Net distribution entry\ **Table Dashboard**: Read-only Desk-Net publication/platform status ## Storage Format ```js { id: , publicationId: , platformId: , categoryId: , publicationStatusId: } ``` ## Content Type Config ```js { handle: 'myContentType', // ... metadata: [ { handle: 'myHandle' type: 'li-desknet-integration', config: { publicationStatus: { fallbackPublicationStatusId: '2', // The order of matchers is important. The array is iterated through from first to last, // with the publicationStatusId taken from the earliest document state match. matchers: [ { type: 'publication', value: 'published', // Only 'published' supported publicationStatusId: '5' }, { type: 'task', taskName: 'proofreading', value: 'completed', // 'requested', 'accepted', 'completed' publicationStatusId: '4' }, { type: 'metadata', propertyName: 'prepared', value: true, // , , , , publicationStatusId: '3' } ] } }, ui: { label: 'Desk-Net', config: { publicationStatus: { labels: [ { publicationStatusId: '5', label: 'Published', // optional, any SVG (ideally using viewBox) icon: '', // optional, any CSS colour string color: '#f00' } ] } } } } // ... ] } ```