mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
slack connections in settings page
This commit is contained in:
parent
92b3863ff3
commit
6710c22b4e
1 changed files with 7 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue