FRE-4510: Add voiceprint feature flag support

- Create voiceprint.feature-flags.ts to re-export checkFlag
- Update voiceprint.config.ts to use checkFlag for all flags
- Update voiceprint.service.ts to import checkFlag
- Ensure voiceprint services respect feature flags
This commit is contained in:
2026-04-29 18:31:14 -04:00
parent 92d0955b74
commit 7928465a58
3 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
/**
* VoicePrint Feature Flags
* Re-exports the checkFlag function from the centralized feature flag system
*/
// Re-export the checkFlag function from the spamshield feature flags module
export { checkFlag } from '../spamshield/feature-flags';