Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions backend/onyx/configs/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ class DocumentSource(str, Enum):
GMAIL = "gmail"
REQUESTTRACKER = "requesttracker"
GITHUB = "github"
GITHUB_PAGES = "github_pages"
GITBOOK = "gitbook"
GITLAB = "gitlab"
GURU = "guru"
Expand Down
2 changes: 2 additions & 0 deletions backend/onyx/connectors/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
from onyx.connectors.freshdesk.connector import FreshdeskConnector
from onyx.connectors.gitbook.connector import GitbookConnector
from onyx.connectors.github.connector import GithubConnector
from onyx.connectors.github_pages.connector import GitHubPagesConnector
from onyx.connectors.gitlab.connector import GitlabConnector
from onyx.connectors.gmail.connector import GmailConnector
from onyx.connectors.gong.connector import GongConnector
Expand Down Expand Up @@ -82,6 +83,7 @@ def identify_connector_class(
InputType.SLIM_RETRIEVAL: SlackConnector,
},
DocumentSource.GITHUB: GithubConnector,
DocumentSource.GITHUB_PAGES: GitHubPagesConnector,
DocumentSource.GMAIL: GmailConnector,
DocumentSource.GITLAB: GitlabConnector,
DocumentSource.GITBOOK: GitbookConnector,
Expand Down
1 change: 1 addition & 0 deletions backend/onyx/connectors/github_pages/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# GitHub Pages Connector
Loading