class Account::Webhooks::Outgoing::DeliveryAttemptsController

def destroy

DELETE /account/webhooks/outgoing/delivery_attempts/:id.json
DELETE /account/webhooks/outgoing/delivery_attempts/:id
def destroy
  @delivery_attempt.destroy
  respond_to do |format|
    format.html { redirect_to [:account, @delivery, :delivery_attempts], notice: I18n.t("webhooks/outgoing/delivery_attempts.notifications.destroyed") }
    format.json { head :no_content }
  end
end