()
| 145 | * Get the configured billing notification Slack channel |
| 146 | */ |
| 147 | export async function getBillingChannel(): Promise<BillingChannelSetting> { |
| 148 | const result = await getSetting<BillingChannelSetting>(SETTING_KEYS.BILLING_SLACK_CHANNEL); |
| 149 | return result ?? { channel_id: null, channel_name: null }; |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Set the billing notification Slack channel |
no outgoing calls
no test coverage detected