cal/packages/app-store/caldavcalendar/index.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

24 lines
545 B
TypeScript

import type { App } from "@calcom/types/App";
import _package from "./package.json";
export const metadata = {
name: "CalDav (Beta)",
description: _package.description,
installed: true,
type: "caldav_calendar",
title: "CalDav (Beta)",
variant: "calendar",
category: "calendar",
categories: ["calendar"],
logo: "icon.svg",
publisher: "Cal.com",
slug: "caldav-calendar",
url: "https://cal.com/",
email: "help@cal.com",
dirName: "caldavcalendar",
} as App;
export * as api from "./api";
export * as lib from "./lib";