From 089eca5da71a69a0be11e9b3e7f63b33b89f14aa Mon Sep 17 00:00:00 2001 From: "MSI\\ModSetter" Date: Thu, 31 Jul 2025 08:37:18 -0700 Subject: [PATCH] docs: added confluence connector info --- README.md | 3 ++- surfsense_web/components/ModernHeroWithGradients.tsx | 3 +-- surfsense_web/components/chat/DocumentsDataTable.tsx | 2 ++ surfsense_web/hooks/use-documents.ts | 3 ++- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 916864b..365763b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ # SurfSense -While tools like NotebookLM and Perplexity are impressive and highly effective for conducting research on any topic/query, SurfSense elevates this capability by integrating with your personal knowledge base. It is a highly customizable AI research agent, connected to external sources such as search engines (Tavily, LinkUp), Slack, Linear, Jira, Notion, YouTube, GitHub, Discord and more to come. +While tools like NotebookLM and Perplexity are impressive and highly effective for conducting research on any topic/query, SurfSense elevates this capability by integrating with your personal knowledge base. It is a highly customizable AI research agent, connected to external sources such as Search Engines (Tavily, LinkUp), Slack, Linear, Jira, Confluence, Notion, YouTube, GitHub, Discord and more to come.
MODSetter%2FSurfSense | Trendshift @@ -64,6 +64,7 @@ Open source and easy to deploy locally. - Slack - Linear - Jira +- Confluence - Notion - Youtube Videos - GitHub diff --git a/surfsense_web/components/ModernHeroWithGradients.tsx b/surfsense_web/components/ModernHeroWithGradients.tsx index ee1e2d8..8c1128b 100644 --- a/surfsense_web/components/ModernHeroWithGradients.tsx +++ b/surfsense_web/components/ModernHeroWithGradients.tsx @@ -50,8 +50,7 @@ export function ModernHeroWithGradients() {

A Customizable AI Research Agent just like NotebookLM or Perplexity, but connected to - external sources such as search engines (Tavily, LinkUp), Slack, Linear, Notion, - YouTube, GitHub, Discord, and more. + external sources such as Search Engines, Slack, Linear, Jira, Confluence, Notion, YouTube, GitHub, Discord and more.

{ @@ -68,6 +69,7 @@ const getDocumentTypeColor = (type: DocumentType) => { LINEAR_CONNECTOR: "bg-pink-50 text-pink-700 border-pink-200", DISCORD_CONNECTOR: "bg-violet-50 text-violet-700 border-violet-200", JIRA_CONNECTOR: "bg-orange-50 text-orange-700 border-orange-200", + CONFLUENCE_CONNECTOR: "bg-teal-50 text-teal-700 border-teal-200", }; return colors[type] || "bg-gray-50 text-gray-700 border-gray-200"; }; diff --git a/surfsense_web/hooks/use-documents.ts b/surfsense_web/hooks/use-documents.ts index 18990d8..c888513 100644 --- a/surfsense_web/hooks/use-documents.ts +++ b/surfsense_web/hooks/use-documents.ts @@ -22,7 +22,8 @@ export type DocumentType = | "GITHUB_CONNECTOR" | "LINEAR_CONNECTOR" | "DISCORD_CONNECTOR" - | "JIRA_CONNECTOR"; + | "JIRA_CONNECTOR" + | "CONFLUENCE_CONNECTOR"; export function useDocuments(searchSpaceId: number, lazy: boolean = false) { const [documents, setDocuments] = useState([]);