Skip to content

Commit 0e77d19

Browse files
committed
feat: bitbucket connector
1 parent 1ea94dc commit 0e77d19

File tree

16 files changed

+1057
-0
lines changed

16 files changed

+1057
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ settings.json
2929
*.sw?
3030
/backend/tests/regression/answer_quality/search_test_config.yaml
3131

32+
3233
# Local .terraform directories
3334
**/.terraform/*
3435

backend/onyx/configs/constants.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ class DocumentSource(str, Enum):
199199
HIGHSPOT = "highspot"
200200

201201
IMAP = "imap"
202+
BITBUCKET = "bitbucket"
202203

203204
# Special case just for integration tests
204205
MOCK_CONNECTOR = "mock_connector"
@@ -541,6 +542,7 @@ class OnyxCallTypes(str, Enum):
541542
DocumentSource.GITHUB: "github data (issues, PRs)",
542543
DocumentSource.GITBOOK: "gitbook data",
543544
DocumentSource.GITLAB: "gitlab data",
545+
DocumentSource.BITBUCKET: "bitbucket data",
544546
DocumentSource.GURU: "guru data",
545547
DocumentSource.BOOKSTACK: "bookstack data",
546548
DocumentSource.OUTLINE: "outline data",

backend/onyx/connectors/bitbucket/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)