2022-08-26 00:48:50 +00:00
|
|
|
import type { AppMeta } from "@calcom/types/App";
|
2022-04-15 02:04:21 +00:00
|
|
|
|
|
|
|
import _package from "./package.json";
|
|
|
|
|
|
|
|
export const metadata = {
|
2022-09-20 17:48:20 +00:00
|
|
|
name: "CalDav (Beta)",
|
2022-04-15 02:04:21 +00:00
|
|
|
description: _package.description,
|
|
|
|
installed: true,
|
|
|
|
type: "caldav_calendar",
|
2022-09-20 17:48:20 +00:00
|
|
|
title: "CalDav (Beta)",
|
2022-04-15 02:04:21 +00:00
|
|
|
imageSrc: "/api/app-store/caldavcalendar/icon.svg",
|
|
|
|
variant: "calendar",
|
|
|
|
category: "calendar",
|
2022-12-20 22:15:06 +00:00
|
|
|
categories: ["calendar"],
|
2022-04-15 02:04:21 +00:00
|
|
|
logo: "/api/app-store/caldavcalendar/icon.svg",
|
|
|
|
publisher: "Cal.com",
|
|
|
|
rating: 5,
|
|
|
|
reviews: 69,
|
|
|
|
slug: "caldav-calendar",
|
|
|
|
trending: false,
|
|
|
|
url: "https://cal.com/",
|
|
|
|
verified: true,
|
2022-09-20 17:48:20 +00:00
|
|
|
email: "ali@cal.com",
|
2022-12-07 21:47:02 +00:00
|
|
|
dirName: "caldavcalendar",
|
2022-08-26 00:48:50 +00:00
|
|
|
} as AppMeta;
|
2022-04-15 02:04:21 +00:00
|
|
|
|
|
|
|
export default metadata;
|