The Governance Reports hub (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.
/gr/reports) renders GRReportsHubPage, a tile-based landing page that links to distinct report surfaces across the GR module, gating each tile behind its own permission.
Overview
GRReportsHubPage presents three report tiles, each guarded by a separate PermissionGate:
| Tile | Destination route | Required permission |
|---|---|---|
| QI reports | /gr/quality-improvement/reports | gr.qi.view |
| Accreditation reports | /gr/accreditations/reports | gr.accreditations.view |
| Audit management | /gr/audits | gr.audits.view |
Who it’s for
No explicit permission gate on the/gr/reports route itself. Individual tiles are gated by GR_PERMISSIONS.QI_VIEW, GR_PERMISSIONS.ACCREDITATIONS_VIEW, and GR_PERMISSIONS.AUDITS_VIEW.
Before you start
- Hold at least one of
gr.qi.view,gr.accreditations.view, orgr.audits.viewto interact with any tile. - To export reports from the destination surfaces, additional export permissions may be required (e.g.,
gr.compliance.export).
Steps
Open Governance Reports
Navigate to
/gr/reports. The hub displays up to three report tiles depending on your permissions.Select a report surface
Click Open on the desired tile. You will be navigated to the corresponding report or list page.
Key concepts
- PermissionGate — platform component that hides its children when the current user lacks the specified permission. Used here to conditionally show the Open button per tile.
- REPORT_TILES — static array in
GRReportsHubPagedefining title, description, route, permission, and icon for each tile.
Related
Governance & Compliance
Governance & Compliance core overview.
Governance & parity
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/gr.tsx
- src/cores/gr/pages/GRReportsHubPage.tsx
- src/platform/permissions/constants.ts