From 6710c22b4ed2cc17b2402991fcb82933e2686af5 Mon Sep 17 00:00:00 2001 From: Sreeram Sreedhar Date: Wed, 27 May 2026 00:35:34 -0400 Subject: [PATCH] slack connections in settings page --- apps/web/components/settings/connections-mcp.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/web/components/settings/connections-mcp.tsx b/apps/web/components/settings/connections-mcp.tsx index 26412728..5d6ca1cc 100644 --- a/apps/web/components/settings/connections-mcp.tsx +++ b/apps/web/components/settings/connections-mcp.tsx @@ -4,7 +4,7 @@ import { dmSans125ClassName } from "@/lib/fonts" import { cn } from "@lib/utils" import { $fetch } from "@lib/api" import { hasActivePlan } from "@lib/queries" -import { GoogleDrive, Notion, OneDrive } from "@ui/assets/icons" +import { GoogleDrive, Notion, OneDrive, Slack } from "@ui/assets/icons" import { useCustomer } from "autumn-js/react" import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query" import { @@ -68,6 +68,12 @@ const CONNECTORS = { icon: OneDrive, documentLabel: "documents", }, + slack: { + title: "Slack", + description: "Sync messages and threads from selected channels", + icon: Slack, + documentLabel: "channels", + }, } as const type ConnectorProvider = keyof typeof CONNECTORS