Skip to content

Commit

Permalink
feat(console): hide the entrance of http email connector (#6616)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangsijie authored Sep 23, 2024
1 parent 1aa5b26 commit 21a5936
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/console/src/components/CreateConnectorForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ function CreateConnectorForm({ onClose, isOpen: isFormOpen, type }: Props) {
// Hide the entrance of adding SAML social connectors, users should go to Enterprise SSO if they want to use SAML.
// Should not remove the SAML factory from GET /connector-factories API, since that could break the existing SAML connectors.
.filter(({ id }) => id !== 'saml')
// Hide the entrance of adding HTTP Email connector
.filter(({ id }) => id !== 'http-email')
);

return allGroups
Expand Down

0 comments on commit 21a5936

Please sign in to comment.