From 0b3ede193e93b95562516ace8d11eb33b22928ac Mon Sep 17 00:00:00 2001 From: Vadim Ogievetsky Date: Sun, 28 Jul 2019 16:17:54 -0700 Subject: [PATCH] Web console: adding Slack channel integration (#8182) * adding slack channel integration * update snapshots --- .../header-bar/__snapshots__/header-bar.spec.tsx.snap | 10 ++++++++++ web-console/src/components/header-bar/header-bar.tsx | 7 +++++++ web-console/src/variables.ts | 1 + 3 files changed, 18 insertions(+) diff --git a/web-console/src/components/header-bar/__snapshots__/header-bar.spec.tsx.snap b/web-console/src/components/header-bar/__snapshots__/header-bar.spec.tsx.snap index ba60e7a0f5f..8fffca636ec 100644 --- a/web-console/src/components/header-bar/__snapshots__/header-bar.spec.tsx.snap +++ b/web-console/src/components/header-bar/__snapshots__/header-bar.spec.tsx.snap @@ -254,6 +254,16 @@ exports[`header bar matches snapshot 1`] = ` target="_blank" text="User group" /> + + ); diff --git a/web-console/src/variables.ts b/web-console/src/variables.ts index 608e90ab6ed..2fa5894aae8 100644 --- a/web-console/src/variables.ts +++ b/web-console/src/variables.ts @@ -26,5 +26,6 @@ export const DRUID_DOCS_SQL = 'https://druid.apache.org/docs/latest/querying/sql export const DRUID_DOCS_RUNE = 'https://druid.apache.org/docs/latest/querying/querying.html'; export const DRUID_COMMUNITY = 'https://druid.apache.org/community/'; export const DRUID_USER_GROUP = 'https://groups.google.com/forum/#!forum/druid-user'; +export const DRUID_ASF_SLACK = 'https://druid.apache.org/community/join-slack'; export const DRUID_DEVELOPER_GROUP = 'https://lists.apache.org/list.html?dev@druid.apache.org'; export const DRUID_DOCS_API = 'https://druid.apache.org/docs/latest/operations/api-reference.html';