feat(slack): wire /docmost ask queue and bump submodule

- Add SLACK_ASK queue name and job constant for AI search backgrounding.
- Bump ee submodule to pick up new Slack handlers and converters.
This commit is contained in:
Philipinho
2026-05-23 18:35:13 +01:00
parent 2d74455c2b
commit 4db5281c11
2 changed files with 5 additions and 1 deletions
@@ -11,6 +11,9 @@ export enum QueueName {
INTEGRATION_QUEUE = '{integration-queue}',
AUDIT_QUEUE = '{audit-queue}',
SLACK_INBOUND = '{slack-inbound}',
// Separate queue for /docmost ask: AI work takes seconds and would
// otherwise starve fast inbound event dispatch.
SLACK_ASK = '{slack-ask}',
}
export enum QueueJob {
@@ -89,4 +92,5 @@ export enum QueueJob {
INTEGRATION_EVENT = 'integration-event',
INTEGRATION_TOKEN_REFRESH = 'integration-token-refresh',
SLACK_EVENT = 'slack-event',
SLACK_ASK = 'slack-ask',
}