From 80fc858a3554b01bfd086c02b1ccf4eadf4408f0 Mon Sep 17 00:00:00 2001 From: Ricky Barrette Date: Mon, 19 Aug 2024 20:14:02 -0400 Subject: [PATCH] send back status 200 if request succeeded --- app/controllers/qbo_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/qbo_controller.rb b/app/controllers/qbo_controller.rb index e34812f..93e95d8 100644 --- a/app/controllers/qbo_controller.rb +++ b/app/controllers/qbo_controller.rb @@ -124,7 +124,7 @@ class QboController < ApplicationController Qbo.update_time_stamp # The webhook doesn't require a response but let's make sure we don't send anything - render :nothing => true + render :nothing => true, status: 200 else render nothing: true, status: 400 end