The 1-on-1s screen is accessible atDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/lo/one-on-ones and provides a list of scheduled one-on-one meetings, with stats cards, an upcoming sessions panel, filtering by status and participant, and the ability to schedule new sessions.
Overview
TheOneOnOnesPage loads all one-on-ones via useOneOnOnes(organizationId, filters), the next three upcoming via useUpcomingOneOnOnes(organizationId, 3), and organization members via useOrganizationMembers. Three stat cards display totals (the specific metrics surfaced are not labeled in the header JSX and require SME confirmation). A participant filter dropdown is populated from orgMembers. One-on-one records are rendered as OneOnOneCard components. The “Schedule 1-on-1” button opens OneOnOneFormDialog. Selecting a card navigates to /lo/one-on-ones/:oneOnOneId.
Who it’s for
RequiresLO_PERMISSIONS.DASHBOARD_VIEW (lo.dashboard.view) via the shared LOViewGuard. Creating one-on-ones uses lo.one-on-ones.create.
Before you start
lo.dashboard.viewpermission required.- Organization members must be configured for the participant filter to populate.
Steps
Review upcoming sessions
The upcoming sessions section shows the next three sessions from
useUpcomingOneOnOnes.Key concepts
- OneOnOneFilters: accepts
statusand participant filters. - useOrganizationMembers: provides org-scoped member list for the participant dropdown.
- profiles: members are mapped to
{ id, full_name }for the form.
Related
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.
Documentation sources
Documentation sources
- src/routes/lo.tsx
- src/cores/lo/pages/OneOnOnesPage.tsx
- src/cores/lo/hooks/useOneOnOnes.ts
- src/cores/lo/hooks/useOrganizationMembers.ts