Skip to content

Commit

Permalink
Fix minor problems with integrations for Enterprise Search (#177570)
Browse files Browse the repository at this point in the history
## Summary

2 problems fixed:

1. Outlook integration for Enterprise Search is not marked as Beta
2. OneDrive tile in integrations had wrong icon and URL to create a
connector (copied from Salesforce).

### For maintainers

- [ ] This was checked for breaking API changes and was [labeled
appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)

---------

Co-authored-by: kibanamachine <[email protected]>
(cherry picked from commit c2b3173)
  • Loading branch information
artem-shelkovnikov committed Feb 23, 2024
1 parent 4a0727a commit 504eb29
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions x-pack/plugins/enterprise_search/server/integrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,13 +295,11 @@ export const registerEnterpriseSearchIntegrations = (
'connector_client',
],
uiInternalPath:
'/app/enterprise_search/content/search_indices/new_index/connector?service_type=salesforce',
'/app/enterprise_search/content/search_indices/new_index/connector?service_type=onedrive',
icons: [
{
type: 'svg',
src: http.basePath.prepend(
'/plugins/enterpriseSearch/assets/source_icons/salesforce_sandbox.svg'
),
src: http.basePath.prepend('/plugins/enterpriseSearch/assets/source_icons/onedrive.svg'),
},
],
shipper: 'enterprise_search',
Expand Down Expand Up @@ -977,7 +975,7 @@ export const registerEnterpriseSearchIntegrations = (
},
],
shipper: 'enterprise_search',
isBeta: false,
isBeta: true,
});

customIntegrations.registerCustomIntegration({
Expand Down

0 comments on commit 504eb29

Please sign in to comment.