2
0
Files
cal/calcom/packages/app-store/_utils/oauth/encodeOAuthState.ts

13 lines
350 B
TypeScript
Raw Normal View History

2024-08-09 00:39:27 +02:00
import type { NextApiRequest } from "next";
import type { IntegrationOAuthCallbackState } from "../../types";
export function encodeOAuthState(req: NextApiRequest) {
if (typeof req.query.state !== "string") {
return undefined;
}
const state: IntegrationOAuthCallbackState = JSON.parse(req.query.state);
return JSON.stringify(state);
}