21 lines
594 B
TypeScript
21 lines
594 B
TypeScript
|
import { createDefaultInstallation } from "@calcom/app-store/_utils/installation";
|
||
|
import type { AppDeclarativeHandler } from "@calcom/types/AppHandler";
|
||
|
|
||
|
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://cron.com",
|
||
|
},
|
||
|
createCredential: ({ appType, user, slug }) =>
|
||
|
createDefaultInstallation({ appType, userId: user.id, slug, key: {} }),
|
||
|
};
|
||
|
|
||
|
export default handler;
|