Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt

Use this file to discover all available pages before exploring further.

The Categories screen is accessible at /lo/knowledge/categories and allows users to create, edit, and delete the category hierarchy used to organize knowledge base articles.

Overview

The KnowledgeCategoriesPage loads categories via useKnowledgeCategories(orgId) and mutations via useKnowledgeCategoryMutation. The page displays a flat list of categories, each showing its name, slug, description, and optional parent relationship. Edit and delete icons appear on each category. A dialog (with fields for name, slug, description, and parent category selector) is used for both creating and editing categories. Deletion is confirmed via a ConfirmationDialog before calling deleteCategory. A “Back to Knowledge Portal” link navigates to /lo/knowledge. The ”+” button opens the dialog in create mode.

Who it’s for

Requires LO_PERMISSIONS.DASHBOARD_VIEW (lo.dashboard.view) via the shared LOViewGuard. Creating knowledge items uses lo.knowledge.create.

Before you start

  • lo.dashboard.view permission required.
  • An active organization context is required.

Steps

1

Navigate to Categories

Go to /lo/knowledge/categories or select “Manage Categories” from the Knowledge Portal.
2

Create a category

Select ”+” to open the category dialog. Enter a name, slug, optional description, and optional parent category.
3

Edit a category

Select the edit icon on a category to open the dialog pre-filled with existing values.
4

Delete a category

Select the delete icon and confirm in ConfirmationDialog.
5

Return to portal

Select “Back to Knowledge Portal” to return to /lo/knowledge.

Key concepts

  • KnowledgeCategory: the data type with fields name, slug, description, parent_id.
  • parent_id: the UUID of the parent category enabling hierarchical organization.
  • slug: URL-friendly identifier for the category.

Leadership

Leadership core overview.

Governance & parity

Documentation coverage and governance.
This page documents shipped product behavior. It is not medical, legal, or billing advice. Verify against your organization’s policies and applicable regulations before using it for clinical, compliance, or billing decisions. Protected health information (PHI) shown in the product is governed by your tenant’s access controls and is never exposed in this documentation.
  • src/routes/lo.tsx
  • src/cores/lo/pages/KnowledgeCategoriesPage.tsx
  • src/cores/lo/hooks/useKnowledgeCategories.ts