18d697436c
* add new rainbow app and metadata * add rainbowkit components * add rainbow to event-type form * create wallet connection ui * verify signature when event is booked * extract rainbow logic to app-store * fix issues, dynamic import, theming * skeleton, better api logic * add gate logic to /[user]/book * Fixes package.json * Update yarn.lock * Type fixes Co-authored-by: zomars <zomars@me.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
18 lines
662 B
TypeScript
18 lines
662 B
TypeScript
import { AppDeclarativeHandler } from "@calcom/types/AppHandler";
|
|
|
|
import { createDefaultInstallation } from "../../_utils/installation";
|
|
import appConfig from "../config.json";
|
|
|
|
const handler: AppDeclarativeHandler = {
|
|
// Instead of passing appType and slug from here, api/integrations/[..args] should be able to derive and pass these directly to createCredential
|
|
appType: appConfig.type,
|
|
slug: appConfig.slug,
|
|
supportsMultipleInstalls: false,
|
|
handlerType: "add",
|
|
redirectUrl: "/apps/installed",
|
|
createCredential: ({ appType, user, slug }) =>
|
|
createDefaultInstallation({ appType, userId: user.id, slug, key: {} }),
|
|
};
|
|
|
|
export default handler;
|