cal/packages/app-store/caldavcalendar/index.ts
Joe Au-Yeung 540bf3a1cb
Fix app categories (#6016)
* Fix app metas

* Optimize categories on app store

* Remove commented code

* Remove console log

* Update apps/web/pages/apps/index.tsx

Co-authored-by: Omar López <zomars@me.com>

* Add categories to missing app metadata

* Fix type error

* Type fix

* Type fixes

* More type fixes

* Clean up

* Fix build error

* No leaky please

* Remove comment

Co-authored-by: Omar López <zomars@me.com>
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
Co-authored-by: Bailey Pumfleet <bailey@pumfleet.co.uk>
2022-12-20 15:15:06 -07:00

28 lines
665 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)",
imageSrc: "/api/app-store/caldavcalendar/icon.svg",
variant: "calendar",
category: "calendar",
categories: ["calendar"],
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,
email: "help@cal.com",
} as App;
export * as api from "./api";
export * as lib from "./lib";