feat: Prefix api keys

This commit is contained in:
Tom Moor
2022-12-03 18:21:33 -05:00
parent 0f31d5b45f
commit d6d1eb4485
4 changed files with 36 additions and 3 deletions

View File

@@ -150,7 +150,7 @@ interface FormData {
}
function generateSigningSecret() {
return `olws_${randomstring.generate(32)}`;
return `ol_whs_${randomstring.generate(32)}`;
}
function WebhookSubscriptionForm({ handleSubmit, webhookSubscription }: Props) {