first commit
This commit is contained in:
14
calcom/packages/app-store/sendgrid/api/_getAdd.ts
Normal file
14
calcom/packages/app-store/sendgrid/api/_getAdd.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import type { NextApiRequest } from "next";
|
||||
|
||||
import { defaultResponder } from "@calcom/lib/server";
|
||||
|
||||
import checkSession from "../../_utils/auth";
|
||||
import { checkInstalled } from "../../_utils/installation";
|
||||
|
||||
export async function getHandler(req: NextApiRequest) {
|
||||
const session = checkSession(req);
|
||||
await checkInstalled("sendgrid", session.user?.id);
|
||||
return { url: "/apps/sendgrid/setup" };
|
||||
}
|
||||
|
||||
export default defaultResponder(getHandler);
|
||||
Reference in New Issue
Block a user