purge phone calls and messages from cache when switching phone numbers or twilio account

This commit is contained in:
m5r
2022-06-11 16:13:00 +02:00
parent 1e9b7a8aa2
commit dbe209c7fc
7 changed files with 73 additions and 28 deletions

View File

@ -24,11 +24,16 @@ const loader: LoaderFunction = async ({ request }) => {
where: { phoneNumberId: phoneNumber.id },
orderBy: { createdAt: Prisma.SortOrder.desc },
}));
return json<KeypadLoaderData>({
hasOngoingSubscription,
hasPhoneNumber,
lastRecipientCalled: lastCall?.recipient,
});
return json<KeypadLoaderData>(
{
hasOngoingSubscription,
hasPhoneNumber,
lastRecipientCalled: lastCall?.recipient,
},
{
headers: { Vary: "Cookie" },
},
);
};
export default loader;