cal/packages/app-store/jitsivideo/_metadata.ts
Hariom Balhara 51695ee79d
chore/AppStore: Remove deprecated imageSrc and make the paths relative in logo (#8479)
* Remove depreated imageSrc and make the paths relative in logo

* Do logo replacement at a single place

* Make logo relative at other places

* Fix campfire page not working in dev environment
2023-04-26 12:03:34 +01:00

30 lines
623 B
TypeScript

import type { AppMeta } from "@calcom/types/App";
import _package from "./package.json";
export const metadata = {
name: "Jitsi Video",
description: _package.description,
installed: true,
type: "jitsi_video",
variant: "conferencing",
categories: ["video"],
logo: "icon.svg",
publisher: "Cal.com",
url: "https://jitsi.org/",
slug: "jitsi",
title: "Jitsi Meet",
isGlobal: false,
email: "help@cal.com",
appData: {
location: {
linkType: "dynamic",
type: "integrations:jitsi",
label: "Jitsi Video",
},
},
dirName: "jitsivideo",
} as AppMeta;
export default metadata;