2023-02-16 22:39:57 +00:00
|
|
|
import type { AppDeclarativeHandler } from "@calcom/types/AppHandler";
|
2022-11-22 18:15:16 +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",
|
|
|
|
createCredential: ({ appType, user, slug }) =>
|
|
|
|
createDefaultInstallation({ appType, userId: user.id, slug, key: {} }),
|
|
|
|
};
|
|
|
|
|
|
|
|
export default handler;
|