The Policy Reviews page (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/reviews) renders PolicyReviewDashboard, a compliance officer tool for identifying and acting on policies that need review.
Overview
PolicyReviewDashboard calls usePolicyList({ filters }) with a review_due filter and usePolicyStats for the stats header. Key behaviors:
- Review filter — defaults to
'overdue'; options are'all','overdue', and'upcoming'. - Category filter — populated from
usePolicyCategories. - Stats — uses
usePolicyStatsfor overdue and upcoming review counts. - Mark Reviewed — calls
updatePolicyviausePolicyMutationto record a review. Only visible to users withgr.policies.review(canReviewPolicies).
status = 'active' are shown.
Who it’s for
Requires permission:gr.policies.admin (route-level guard from gr.tsx). The mark-reviewed action additionally checks gr.policies.review.
Before you start
- You must hold
gr.policies.adminto access this page. - Ensure the
default_policy_review_period_dayssetting is configured in Governance Settings to drive review scheduling.
Steps
Review overdue policies
The Overdue filter is selected by default. Review each policy card for review deadline information.
Switch to upcoming reviews
Select Upcoming in the review filter to see policies whose review date is approaching.
Mark a policy as reviewed
If you hold
gr.policies.review, click Mark Reviewed on a policy card. The updatePolicy mutation records the review.Key concepts
- usePolicyList with review_due filter — fetches active policies filtered by
review_due: 'overdue'or'upcoming'. - usePolicyStats — returns
overdueReviewsandupcomingReviews30Dayscounts for the stats header. - gr.policies.review — permission required to submit the mark-reviewed action.
- default_policy_review_period_days — module setting that controls how frequently policies are scheduled for review.
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/PolicyReviewDashboard.tsx
- src/cores/gr/hooks/usePolicyList.ts
- src/cores/gr/hooks/usePolicyMutation.ts