* wip added QR code app, needs settings * added QR code settings, needs eventType.URL * Make URL prop available to apps * Add recurringEvent in available. It was missing earlier * added autoAnimate to AppSettings * Remove isSunrise demo prop * Simplify schema even more Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
import type { AppMeta } from "@calcom/types/App";
|
|
|
|
import config from "./config.json";
|
|
|
|
export const metadata = {
|
|
category: "other",
|
|
...config,
|
|
} as AppMeta;
|
|
|
|
export default metadata;
|