mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
4 lines
123 B
TypeScript
4 lines
123 B
TypeScript
export const toFriendlyWebhookEventName = (eventName: string) => {
|
|
return eventName.replace(/_/g, '.').toLowerCase();
|
|
};
|