Files
calendar/packages/app-store/office365calendar/_metadata.ts
T
f6f257c705 Refactor app store & fix admin apps list bugs (#7812)
* If omni install do not show app successfully installed toast

* Clean up. Up to hubspot

* Fix double click to enable apps

* Clean up rest of apps

* Create cli app add dirName

* Type fix

* Only enable apps if keys are valid

* Save dirName as slug

* Remove dirname from metadata

---------

Co-authored-by: zomars <zomars@me.com>
2023-04-11 18:56:43 -07:00

26 lines
637 B
TypeScript

import type { AppMeta } from "@calcom/types/App";
import _package from "./package.json";
export const metadata = {
name: "Outlook Calendar",
description: _package.description,
type: "office365_calendar",
title: "Outlook Calendar",
imageSrc: "/api/app-store/office365calendar/icon.svg",
variant: "calendar",
category: "calendar",
categories: ["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 AppMeta;
export default metadata;