Add JSON API for webhook deliveries (#2785)

* Add JSON API for webhook deliveries

* Extract sanitized_request method on Webhook::Delivery

* Extract response_summary method on Webhook::Delivery
This commit is contained in:
Rob Zolkos
2026-04-07 15:08:27 -04:00
committed by GitHub
parent f3bacffe2b
commit 21981898d2
9 changed files with 231 additions and 0 deletions
+1
View File
@@ -46,6 +46,7 @@ Rails.application.routes.draw do
resources :webhooks do
scope module: :webhooks do
resource :activation, only: :create
resources :deliveries, only: :index, defaults: { format: :json }
end
end
end