2022-04-15 02:04:21 +00:00
|
|
|
import type { App } from "@calcom/types/App";
|
|
|
|
|
|
|
|
import { LocationType } from "../locations";
|
|
|
|
import _package from "./package.json";
|
|
|
|
|
|
|
|
export const metadata = {
|
2022-05-04 18:45:30 +00:00
|
|
|
name: "Microsoft 365/Teams (Requires work/school account)",
|
2022-04-15 02:04:21 +00:00
|
|
|
description: _package.description,
|
|
|
|
type: "office365_video",
|
|
|
|
imageSrc: "/api/app-store/office365video/icon.svg",
|
|
|
|
variant: "conferencing",
|
|
|
|
logo: "/api/app-store/office365video/icon.svg",
|
|
|
|
publisher: "Cal.com",
|
|
|
|
url: "https://www.microsoft.com/en-ca/microsoft-teams/group-chat-software",
|
|
|
|
verified: true,
|
|
|
|
rating: 4.3, // TODO: placeholder for now, pull this from TrustPilot or G2
|
|
|
|
reviews: 69, // TODO: placeholder for now, pull this from TrustPilot or G2
|
|
|
|
category: "video",
|
|
|
|
slug: "msteams",
|
2022-05-04 18:45:30 +00:00
|
|
|
title: "MS Teams (Requires work/school account)",
|
2022-04-15 02:04:21 +00:00
|
|
|
trending: true,
|
|
|
|
email: "help@cal.com",
|
|
|
|
locationType: LocationType.Teams,
|
|
|
|
locationLabel: "MS Teams",
|
|
|
|
} as App;
|
|
|
|
|
|
|
|
export default metadata;
|