calcom/packages/app-store/office365calendar/_metadata.ts
Omar López ba73960a02
App store metadata refactor (#2495)
* Delete api

* Fixes circular dependencies

* Revert "Delete api"

This reverts commit 174177a8331fc376b2dc7abda2c7adc56b24dd60.

* Delete _metadata.ts

* Update metadata.ts
2022-04-14 20:04:21 -06:00

25 lines
722 B
TypeScript

import type { App } from "@calcom/types/App";
import _package from "./package.json";
export const metadata = {
name: "Office 365 / Outlook.com Calendar",
description: _package.description,
installed: !!(process.env.MS_GRAPH_CLIENT_ID && process.env.MS_GRAPH_CLIENT_SECRET),
type: "office365_calendar",
title: "Office 365 / Outlook.com Calendar",
imageSrc: "/api/app-store/office365calendar/icon.svg",
variant: "calendar",
category: "calendar",
logo: "/api/app-store/office365calendar/icon.svg",
publisher: "Cal.com",
rating: 5,
reviews: 69,
slug: "office365-calendar",
trending: false,
url: "https://cal.com/",
verified: true,
email: "help@cal.com",
} as App;
export default metadata;