()
| 13 | const APP_URL = process.env.APP_URL || 'https://agenticadvertising.org'; |
| 14 | |
| 15 | function getChannelId(): string | null { |
| 16 | if (!CHANNEL_ID) { |
| 17 | logger.debug('REGISTRY_EDITS_CHANNEL_ID not configured, skipping registry notification'); |
| 18 | return null; |
| 19 | } |
| 20 | return CHANNEL_ID; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Notify when a community member edits an existing registry record. |
no outgoing calls
no test coverage detected