2023-02-16 22:39:57 +00:00
|
|
|
import type { AppDeclarativeHandler } from "@calcom/types/AppHandler";
|
2022-10-21 09:49:49 +00:00
|
|
|
|
|
|
|
import { createDefaultInstallation } from "../../_utils/installation";
|
|
|
|
import appConfig from "../config.json";
|
|
|
|
|
|
|
|
const handler: AppDeclarativeHandler = {
|
|
|
|
appType: appConfig.type,
|
|
|
|
variant: appConfig.variant,
|
|
|
|
slug: appConfig.slug,
|
|
|
|
supportsMultipleInstalls: false,
|
|
|
|
handlerType: "add",
|
2022-11-13 15:51:31 +00:00
|
|
|
redirect: {
|
|
|
|
newTab: true,
|
|
|
|
url: "https://pipedream.com/apps/cal-com",
|
|
|
|
},
|
2022-10-21 09:49:49 +00:00
|
|
|
createCredential: ({ appType, user, slug }) =>
|
|
|
|
createDefaultInstallation({ appType, userId: user.id, slug, key: {} }),
|
|
|
|
};
|
|
|
|
|
|
|
|
export default handler;
|