Add description for Developers/webhook page (#6327)

- Add optional description field to webhook page in developer settings.

Fix https://github.com/twentyhq/twenty/issues/6236

---------

Co-authored-by: Thomas Trompette <thomas.trompette@sfr.fr>
This commit is contained in:
AbdulQader Qassab
2024-07-31 12:59:30 +04:00
committed by GitHub
parent ee4f1da956
commit 50f1cd352d
6 changed files with 83 additions and 6 deletions

View File

@ -1,6 +1,7 @@
export type Webhook = {
id: string;
targetUrl: string;
description?: string;
operation: string;
__typename: 'Webhook';
};