-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Add the YouSign Webhook #60012
-
Hello everyone,
I would like to add the YouSign implementation for the Webhook component. I need it for one of my project.
Where should I put the code ? In the Framework Bundle ?
Or maybe this component is not done for every webhook ?
Thanks for the explanation ! Have a good day !
Beta Was this translation helpful? Give feedback.
All reactions
This should probably be in your own package that depends on symfony/webhook
and implements the appropriate request parser.
As YouSign does not correspond to a case where we want to parse webhooks into one of our own remote event abstractions (we have 2: mailer and notifier), this should probably be a third-party package rather than a package shipped in Symfony itself.
symfony/webhook is not meant to provide request parsers for all services. It provides the infrastructure for webhooks to be used by other packages.
Replies: 1 comment 1 reply
-
This should probably be in your own package that depends on symfony/webhook
and implements the appropriate request parser.
As YouSign does not correspond to a case where we want to parse webhooks into one of our own remote event abstractions (we have 2: mailer and notifier), this should probably be a third-party package rather than a package shipped in Symfony itself.
symfony/webhook is not meant to provide request parsers for all services. It provides the infrastructure for webhooks to be used by other packages.
Beta Was this translation helpful? Give feedback.
All reactions
-
Ok, that's what I thought after thinking about it yesterday evening ! Thank you for the fast answer :)
Have a good day !
Beta Was this translation helpful? Give feedback.