()
| 220 | * Get the configured prospect notification Slack channel |
| 221 | */ |
| 222 | export async function getProspectChannel(): Promise<ProspectChannelSetting> { |
| 223 | const result = await getSetting<ProspectChannelSetting>(SETTING_KEYS.PROSPECT_SLACK_CHANNEL); |
| 224 | return result ?? { channel_id: null, channel_name: null }; |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * Set the prospect notification Slack channel |
no outgoing calls
no test coverage detected