2cf53533a3
test /api/webhook/incoming-message
21 lines
502 B
TypeScript
21 lines
502 B
TypeScript
import { NotFoundError, resolver } from "blitz";
|
|
|
|
import db from "db";
|
|
import getCurrentCustomer from "../../customers/queries/get-current-customer";
|
|
|
|
export default resolver.pipe(resolver.authorize(), async (_ = null, context) => {
|
|
const customer = await getCurrentCustomer(null, context);
|
|
if (!customer) {
|
|
throw new NotFoundError();
|
|
}
|
|
|
|
return db.phoneNumber.findFirst({
|
|
where: { customerId: customer.id },
|
|
select: {
|
|
id: true,
|
|
phoneNumber: true,
|
|
phoneNumberSid: true,
|
|
},
|
|
});
|
|
});
|