
* Remove global app installed button * Add Jitsi add button * Find app credentials based on variant * Make huddle installable * Remove default installed message from installed apps page * Display Jitsi and Huddle as locations if installed * Reverse global app changes and made Jitsi and Huddle non global * Changes to app page refrence #2556 * Fix type errors * Revert code Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
29 lines
838 B
TypeScript
29 lines
838 B
TypeScript
import type { App } from "@calcom/types/App";
|
|
|
|
import { LocationType } from "../locations";
|
|
import _package from "./package.json";
|
|
|
|
export const metadata = {
|
|
name: "Jitsi Video",
|
|
description: _package.description,
|
|
installed: true,
|
|
type: "jitsi_video",
|
|
imageSrc: "/api/app-store/jitsivideo/icon.svg",
|
|
variant: "conferencing",
|
|
logo: "/api/app-store/jitsivideo/icon.svg",
|
|
publisher: "Cal.com",
|
|
url: "https://jitsi.org/",
|
|
verified: true,
|
|
rating: 0, // TODO: placeholder for now, pull this from TrustPilot or G2
|
|
reviews: 0, // TODO: placeholder for now, pull this from TrustPilot or G2
|
|
category: "video",
|
|
slug: "jitsi_video",
|
|
title: "Jitsi Meet",
|
|
trending: true,
|
|
isGlobal: false,
|
|
email: "help@cal.com",
|
|
locationType: LocationType.Jitsi,
|
|
locationLabel: "Jitsi Video",
|
|
} as App;
|
|
|
|
export default metadata;
|