mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-11 14:00:29 +00:00
0feb039775
Users who accumulated AI patrol findings before the patrol-without-AI bug was fixed (24c4bb0b) could not dismiss them because the dismiss and resolve endpoints required a Pro license. Changes: - Remove Pro license requirement from /api/ai/patrol/dismiss endpoint - Remove Pro license requirement from /api/ai/patrol/resolve endpoint - Add ClearAll() method to FindingsStore for bulk clearing - Add DELETE /api/ai/patrol/findings endpoint for clearing all findings - Add "Clear All" button to AI Insights UI Users can now dismiss or resolve any findings they can see, and admins can clear all findings at once if needed.
Internal API Package
This directory contains the API server implementation for Pulse.
Important Note About frontend-modern/
The frontend-modern/ subdirectory that appears here is:
- AUTO-GENERATED during builds
- NOT the source code - just a build artifact
- IN .gitignore - never committed
- REQUIRED BY GO - The embed directive needs it here
Frontend Development Location
👉 Edit frontend files at: /opt/pulse/frontend-modern/src/
Why This Structure?
Go's //go:embed directive has limitations:
- Cannot use
../paths to access parent directories - Cannot follow symbolic links
- Must embed files within the Go module
This is a known Go limitation and our structure works around it.