Skip to main content

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.

The Enrollment Details page is accessible at two routes:
  • Admin view: /hr/benefits/enrollments/:id — requires hr.benefits.admin
  • Employee view: /hr/my-benefits/enrollments/:id — no explicit permission gate
Both routes display plan information, cost breakdown, covered dependents, and enrollment status. The admin view adds approve and reject actions for pending enrollments.

Overview

The admin enrollment detail page shows full enrollment information: employee name, plan name and type, coverage level, effective date, employee and employer monthly contributions, enrollment status, and a list of covered dependents with verification status. Pending enrollments display an Approve button and a Reject button (which opens a rejection reason dialog). The admin view is wrapped in RequirePermission for hr.benefits.admin. The employee enrollment detail page (/hr/my-benefits/enrollments/:id) shows the same plan card, cost card, and dependents list but without admin actions. A breadcrumb is set to the plan name. Both views use the same useBenefitEnrollmentDetail hook and the shared EnrollmentPlanCard, EnrollmentCostCard, and EnrollmentDependentsList components.

Who it’s for

  • Admin view (/hr/benefits/enrollments/:id): requires permission hr.benefits.admin.
  • Employee view (/hr/my-benefits/enrollments/:id): no explicit permission gate on this route.

Before you start

  • The enrollment record must exist in your organization.
  • For the admin view, you need the hr.benefits.admin permission.

Steps

  1. Navigate to the enrollment list (/hr/benefits/enrollments or /hr/my-benefits) and click an enrollment row.
  2. Review the plan card, cost breakdown, and covered dependents.
  3. (Admin only) If status is Pending, use Approve or Reject to act on the enrollment.
  4. When rejecting, enter a reason in the dialog and confirm.

Human Resources

Human Resources 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.
  • src/routes/hr/benefits-routes.tsx
  • src/cores/hr/benefits/pages/admin/EnrollmentDetailPage.tsx
  • src/cores/hr/benefits/pages/employee/MyEnrollmentDetailPage.tsx
  • src/cores/hr/benefits/hooks/useBenefitEnrollments.ts