updated integration description
This commit is contained in:
parent
9e9ffdd656
commit
b3c5752d67
1 changed files with 4 additions and 4 deletions
|
@ -212,21 +212,21 @@ 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 {
|
||||||
|
|
Loading…
Reference in a new issue