This document describes the dry-run redaction preview feature on the /api/faq-ingest endpoint. Clients use this to preview PHI (Protected Health Information) redactions before content is committed to MongoDB and Azure AI Search.
This document outlines the development plan for building the FlyBirmingham.com website using modern web technologies. The project migrates the existing WordPress site to a new platform with enhanced functionality, improved performance, and easier content management.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fetchMachine = Machine({ | |
| id: 'fetch', | |
| initial: 'created', | |
| states: { | |
| created: { | |
| on: { | |
| PM_APPROVE: 'approved', | |
| PM_REJECT: 'rejected' | |
| } | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |