Skip to content

Commit

Permalink
[Workplace Search] New Network Drive, Outlook, Teams, and Zoom Server…
Browse files Browse the repository at this point in the history
… integration tiles (#130421)
  • Loading branch information
byronhulcher authored Apr 21, 2022
1 parent 5517598 commit a3fd86c
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function ({ getService }: FtrProviderContext) {

expect(resp.body).to.be.an('array');

expect(resp.body.length).to.be(38);
expect(resp.body.length).to.be(42);

// Test for sample data card
expect(resp.body.findIndex((c: { id: string }) => c.id === 'sample_data_all')).to.be.above(
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 59 additions & 0 deletions x-pack/plugins/enterprise_search/server/integrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,21 @@ const workplaceSearchIntegrations: WorkplaceSearchIntegration[] = [
),
categories: ['productivity'],
},
{
id: 'network_drive',
title: i18n.translate('xpack.enterpriseSearch.workplaceSearch.integrations.networkDriveName', {
defaultMessage: 'Network Drive',
}),
description: i18n.translate(
'xpack.enterpriseSearch.workplaceSearch.integrations.networkDriveDescription',
{
defaultMessage:
'Search over your files and folders stored on network drives with Enterprise Search.',
}
),
categories: ['enterprise_search', 'file_storage'],
uiInternalPath: '/app/enterprise_search/workplace_search/sources/add/network_drive',
},
{
id: 'onedrive',
title: i18n.translate('xpack.enterpriseSearch.workplaceSearch.integrations.onedriveName', {
Expand All @@ -176,6 +191,20 @@ const workplaceSearchIntegrations: WorkplaceSearchIntegration[] = [
categories: ['file_storage'],
uiInternalPath: '/app/enterprise_search/workplace_search/sources/add/one_drive',
},
{
id: 'outlook',
title: i18n.translate('xpack.enterpriseSearch.workplaceSearch.integrations.outlookName', {
defaultMessage: 'Outlook',
}),
description: i18n.translate(
'xpack.enterpriseSearch.workplaceSearch.integrations.outlookDescription',
{
defaultMessage: 'Search over your email and calendars with Enterprise Search.',
}
),
categories: ['enterprise_search', 'microsoft_365', 'communications', 'productivity'],
uiInternalPath: '/app/enterprise_search/workplace_search/sources/add/outlook',
},
{
id: 'salesforce',
title: i18n.translate('xpack.enterpriseSearch.workplaceSearch.integrations.salesforceName', {
Expand Down Expand Up @@ -266,6 +295,21 @@ const workplaceSearchIntegrations: WorkplaceSearchIntegration[] = [
),
categories: ['communications'],
},
{
id: 'teams',
title: i18n.translate('xpack.enterpriseSearch.workplaceSearch.integrations.teamsName', {
defaultMessage: 'Teams',
}),
description: i18n.translate(
'xpack.enterpriseSearch.workplaceSearch.integrations.teamsDescription',
{
defaultMessage:
'Search over meeting recordings, chats and other communications with Enterprise Search.',
}
),
categories: ['enterprise_search', 'microsoft_365', 'communications', 'productivity'],
uiInternalPath: '/app/enterprise_search/workplace_search/sources/add/teams',
},
{
id: 'zendesk',
title: i18n.translate('xpack.enterpriseSearch.workplaceSearch.integrations.zendeskName', {
Expand All @@ -279,6 +323,21 @@ const workplaceSearchIntegrations: WorkplaceSearchIntegration[] = [
),
categories: ['communications'],
},
{
id: 'zoom',
title: i18n.translate('xpack.enterpriseSearch.workplaceSearch.integrations.zoomName', {
defaultMessage: 'Zoom',
}),
description: i18n.translate(
'xpack.enterpriseSearch.workplaceSearch.integrations.zoomDescription',
{
defaultMessage:
'Search over meeting recordings, chats and other communications with Enterprise Search.',
}
),
categories: ['enterprise_search', 'communications', 'productivity'],
uiInternalPath: '/app/enterprise_search/workplace_search/sources/add/zoom',
},
{
id: 'custom_api_source',
title: i18n.translate(
Expand Down

0 comments on commit a3fd86c

Please sign in to comment.