Skip to content

Commit b028be3

Browse files
authored
Merge pull request #377 from authorizerdev/fix-webhook-test-endpoint
fix: test webhook endpoint mutation
2 parents fab3c2f + 9a8d20b commit b028be3

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

dashboard/src/pages/Webhooks.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ const Webhooks = () => {
118118
useEffect(() => {
119119
fetchWebookData();
120120
}, [paginationProps.page, paginationProps.limit]);
121-
console.log({ webhookData });
122121
return (
123122
<Box m="5" py="5" px="10" bg="white" rounded="md">
124123
<Flex margin="2% 0" justifyContent="space-between" alignItems="center">

server/graph/generated/generated.go

Lines changed: 10 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/graph/model/models_gen.go

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/graph/schema.graphqls

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,7 @@ input WebhookRequest {
512512
input TestEndpointRequest {
513513
endpoint: String!
514514
event_name: String!
515+
event_description: String
515516
headers: Map
516517
}
517518

0 commit comments

Comments
 (0)