c3fbf8224b
* Add Embed ModalBox for routing forms * Add duplicate form support * Fix duplication logic * Change to feathericons everywhere and other fixes * Dont allow routes for fallback route * Fix all TS issues * Fix tests * Support routing using query params * Support multiselect in router endpoint * Fix the issue where app goes in embed mode after viewing embed once * Add router url tests * Add Responses download and form toggling tests * Add required validation test * Change Icons everywhere * App typeform app * Improvements in cli * Add typeform how-to-use page * Add typeform how-to-use page and screenshots * Fix TS error * Add missing image * Update CliApp.tsx * Revert unexpected zapier change * Revert yarn.lock, not sure why it was modified 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;
|