The Policy Acknowledgment Forms 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/settings/policy-acknowledgment-forms) renders PolicyAcknowledgmentFormsPage, which lists fw_forms records owned by the GR core that are eligible to be attached to policies as acknowledgment forms.
Overview
PolicyAcknowledgmentFormsPage calls useEntityBreadcrumb for navigation context and renders an informational Alert explaining the purpose of the page, followed by ModuleFormsPage filtered to owning_core='gr' with moduleDisplayName='Policy Acknowledgment'.
The alert reads: “These forms can be attached to a policy as its acknowledgment form. When set, signers see the configured fields (instead of the default attestation) inside the acknowledgment dialog.”
New forms are created via /fw/forms/new?core=gr&purpose=policy_acknowledgment, subject to FW_PERMISSIONS.FORMS_CREATE (fw.forms.create).
Who it’s for
Requires permission:gr.policies.acknowledgment-forms.manage (GR_PERMISSIONS.POLICIES_ACKNOWLEDGMENT_FORMS_MANAGE). Users without this permission cannot access this route.
Before you start
- You must hold
gr.policies.acknowledgment-forms.manage. - Forms created here appear as options in the policy detail page’s acknowledgment form selector.
- Coordinate with legal or compliance before deploying a custom acknowledgment form.
Steps
Open Policy Acknowledgment Forms settings
Navigate to
/gr/settings/policy-acknowledgment-forms. The page lists all GR-owned acknowledgment forms.Review existing forms
Browse the list of
fw_forms scoped to owning_core='gr'. Existing forms can be opened for editing.Create a new acknowledgment form
If you hold
fw.forms.create, use the create action. You are directed to /fw/forms/new?core=gr&purpose=policy_acknowledgment in the Forms & Workflows module.Key concepts
- acknowledgment_form_id — foreign key on
gr_policiesthat links a policy to a specificfw_formsrecord, overriding the default attestation UI. - ModuleFormsPage (PF-08) — shared platform component rendering a filtered, permission-aware forms list.
- purpose=policy_acknowledgment — query parameter passed to the form builder to pre-configure the new form’s intended use.
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/settings/PolicyAcknowledgmentFormsPage.tsx
- src/platform/permissions/constants.ts
- src/platform/forms/ModuleFormsPage.tsx