* fix: #11213, #11215 * Use default colour * adding bolna app for cal.com * cleanup by removing redundant changes --------- Co-authored-by: Siddharth Movaliya <siddraj1992@gmail.com> Co-authored-by: Sean Brydon <sean@cal.com>
21 lines
629 B
TypeScript
21 lines
629 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://playground.bolna.dev/auth/calcom",
|
|
},
|
|
createCredential: ({ appType, user, slug, teamId }) =>
|
|
createDefaultInstallation({ appType, user: user, slug, key: {}, teamId }),
|
|
};
|
|
|
|
export default handler;
|