Skip to content

Commit

Permalink
frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
hagen-danswer committed Sep 30, 2024
1 parent fa740ec commit 492dfdd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions web/src/lib/connectors/AutoSyncOptionFields.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,5 @@ export const autoSyncConfigBySource: Record<
),
},
},
slack: {},
};
6 changes: 5 additions & 1 deletion web/src/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,5 +272,9 @@ export type ConfigurableSources = Exclude<
>;

// The sources that have auto-sync support on the backend
export const validAutoSyncSources = ["confluence", "google_drive"] as const;
export const validAutoSyncSources = [
"confluence",
"google_drive",
"slack",
] as const;
export type ValidAutoSyncSources = (typeof validAutoSyncSources)[number];

0 comments on commit 492dfdd

Please sign in to comment.