cal.pub0.org/packages/app-store/wordpress/api/add.ts

21 lines
604 B
TypeScript
Raw Normal View History

import type { AppDeclarativeHandler } from "@calcom/types/AppHandler";
2022-11-29 21:57:26 +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",
redirect: {
newTab: true,
url: "https://wordpress.org/plugins/cal-com/",
},
createCredential: ({ appType, user, slug }) =>
createDefaultInstallation({ appType, userId: user.id, slug, key: {} }),
};
export default handler;