cal/packages/app-store/huddle01video/_metadata.ts
Joe Au-Yeung 617e665004
feat: Enable Conferencing Apps for Team Events [CAL-1925] (#10383)
Co-authored-by: Omar López <zomars@me.com>
Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
2023-08-02 09:24:28 +05:30

34 lines
799 B
TypeScript

import { randomString } from "@calcom/lib/random";
import type { AppMeta } from "@calcom/types/App";
import _package from "./package.json";
export const metadata = {
name: "Huddle01",
description: _package.description,
installed: true,
type: "huddle01_video",
variant: "conferencing",
categories: ["conferencing"],
logo: "icon.svg",
publisher: "huddle01.com",
url: "https://huddle01.com",
category: "conferencing",
slug: "huddle01",
title: "Huddle01",
isGlobal: false,
email: "support@huddle01.com",
appData: {
location: {
linkType: "dynamic",
type: "integrations:huddle01",
label: "Huddle01 Video",
},
},
key: { apikey: randomString(12) },
dirName: "huddle01video",
concurrentMeetings: true,
} as AppMeta;
export default metadata;