updated integration description

This commit is contained in:
Peer_Rich 2021-06-17 17:06:32 +01:00 committed by GitHub
parent 9e9ffdd656
commit b3c5752d67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -212,24 +212,24 @@ export async function getServerSideProps(context) {
type: "google_calendar", type: "google_calendar",
title: "Google Calendar", title: "Google Calendar",
imageSrc: "integrations/google-calendar.png", imageSrc: "integrations/google-calendar.png",
description: "For personal and business accounts", description: "For personal and business calendars",
}, { }, {
installed: !!(process.env.MS_GRAPH_CLIENT_ID && process.env.MS_GRAPH_CLIENT_SECRET), installed: !!(process.env.MS_GRAPH_CLIENT_ID && process.env.MS_GRAPH_CLIENT_SECRET),
type: "office365_calendar", type: "office365_calendar",
credential: credentials.find( (integration) => integration.type === "office365_calendar" ) || null, credential: credentials.find( (integration) => integration.type === "office365_calendar" ) || null,
title: "Office 365 / Outlook.com Calendar", title: "Office 365 / Outlook.com Calendar",
imageSrc: "integrations/office-365.png", imageSrc: "integrations/office-365.png",
description: "For personal and business accounts", description: "For personal and business calendars",
}, { }, {
installed: !!(process.env.ZOOM_CLIENT_ID && process.env.ZOOM_CLIENT_SECRET), installed: !!(process.env.ZOOM_CLIENT_ID && process.env.ZOOM_CLIENT_SECRET),
type: "zoom_video", type: "zoom_video",
credential: credentials.find( (integration) => integration.type === "zoom_video" ) || null, credential: credentials.find( (integration) => integration.type === "zoom_video" ) || null,
title: "Zoom", title: "Zoom",
imageSrc: "integrations/zoom.png", imageSrc: "integrations/zoom.png",
description: "For personal and business accounts", description: "Video Conferencing",
} ]; } ];
return { return {
props: {integrations}, props: {integrations},
} }
} }