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.
/rh/staff-operations is a URL namespace that groups staff-facing operational sub-routes within the Recovery Housing module. There is no dedicated page rendered at this exact path; navigating to /rh/staff-operations directly will reach a Not Found state.
Overview
src/routes/rh.tsx defines three child routes under the /rh/staff-operations namespace, all wrapped by the outer RHViewGuard (rh.dashboard.view), with no additional permission gate at the namespace level:
| Path | Component |
|---|---|
/rh/staff-operations/assignments | StaffAssignmentsPage |
/rh/staff-operations/training | StaffTrainingsPage |
/rh/staff-operations/shift-notes | ShiftNotesPage |
/rh/staff-operations itself.
Who it’s for
No explicit permission gate on this route. All sub-routes are accessible to users holdingRH_PERMISSIONS.DASHBOARD_VIEW (rh.dashboard.view). RH_PERMISSIONS.STAFF_OPERATIONS_VIEW (rh.staff-operations.view) and RH_PERMISSIONS.STAFF_OPERATIONS_CREATE (rh.staff-operations.create) exist in the permission constants but are not applied as route-level guards on the individual sub-route pages observed in the code.
Before you start
- Hold
rh.dashboard.viewto access the RH module. - Navigate directly to one of the sub-routes listed in the Overview table.
Steps
Navigate to a staff-operations sub-route
Choose one of the three sub-routes:
/rh/staff-operations/assignments, /rh/staff-operations/training, or /rh/staff-operations/shift-notes. There is no landing page at /rh/staff-operations itself.Staff Assignments
/rh/staff-operations/assignments — manage staff-to-residence assignments. See the Assignments documentation for details.Training
/rh/staff-operations/training — track staff certifications and training expirations. See the Training documentation for details.Related
Recovery Housing
Recovery Housing references and 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/rh.tsx
- src/cores/rh/pages/StaffAssignmentsPage.tsx
- src/cores/rh/pages/StaffTrainingsPage.tsx
- src/cores/rh/pages/ShiftNotesPage.tsx