shellphone.app/app/onboarding/mutations/set-twilio-api-fields.ts

30 lines
646 B
TypeScript
Raw Normal View History

import { resolver } from "blitz";
import { z } from "zod";
2021-07-31 14:33:18 +00:00
import db from "../../../db";
import getCurrentCustomer from "../../customers/queries/get-current-customer";
2021-07-31 14:33:18 +00:00
const Body = z.object({
twilioAccountSid: z.string(),
twilioAuthToken: z.string(),
});
2021-07-31 14:33:18 +00:00
export default resolver.pipe(
resolver.zod(Body),
resolver.authorize(),
async ({ twilioAccountSid, twilioAuthToken }, context) => {
const customer = await getCurrentCustomer(null, context);
if (!customer) {
return;
}
2021-07-31 14:33:18 +00:00
await db.customer.update({
where: { id: customer.id },
2021-07-31 14:33:18 +00:00
data: {
accountSid: twilioAccountSid,
authToken: twilioAuthToken,
},
});
2021-08-01 12:04:04 +00:00
},
);