1
2
3
4
5
6
7
8
9
10
11
12
13
14
// # New Val Town User (on Clerk) -> Val Town Discord notification
// Translates one kind of webhook (Clerk) into another (Discord)
async function handleDiscordNewUser(req: express.Request, res) {
// check custom auth secret sent from clerk
if (req.get("auth") !== me.secrets.clerkNonSensitive)
return res.end("Unauthorized");
await stevekrouse.discordWebhook({
url: me.secrets.discordUserEvents,
content: req.body.data.email_addresses[0].email_address +
" " +
req.body.data.profile_image_url,
});
res.end("Success");
}
👆 This is a val. Vals are TypeScript snippets of code, written in the browser and run on our servers. Create scheduled functions, email yourself, and persist small pieces of data — all from the browser.