()
| 296 | * a central queue regardless of which committee the draft belongs to. |
| 297 | */ |
| 298 | export async function getEditorialChannel(): Promise<EditorialChannelSetting> { |
| 299 | const result = await getSetting<EditorialChannelSetting>(SETTING_KEYS.EDITORIAL_SLACK_CHANNEL); |
| 300 | return result ?? { channel_id: null, channel_name: null }; |
| 301 | } |
| 302 | |
| 303 | /** |
| 304 | * Set the editorial review notification Slack channel |
no outgoing calls
no test coverage detected