cal.pub0.org/packages/app-store/closecomothercalendar/_metadata.ts

19 lines
481 B
TypeScript
Raw Normal View History

import type { App } from "@calcom/types/App";
import config from "./config.json";
export const metadata = {
category: "other",
// FIXME: Currently for an app to be shown as installed, it must have this variable set. Either hardcoded or if it depends on some env variable, that should be checked here
installed: true,
rating: 0,
reviews: 0,
trending: true,
verified: true,
licenseRequired: true,
isProOnly: true,
...config,
} as App;
export default metadata;