From 34aa7e7facecc8ea90e455491bb2cbac82cbcf9b Mon Sep 17 00:00:00 2001 From: Aaron de Mello Date: Fri, 18 Jul 2025 15:37:54 -0400 Subject: [PATCH] Fix: missing cgi import for webhooks --- lib/nylas/resources/webhooks.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/nylas/resources/webhooks.rb b/lib/nylas/resources/webhooks.rb index e4f60d30..91baf36a 100644 --- a/lib/nylas/resources/webhooks.rb +++ b/lib/nylas/resources/webhooks.rb @@ -1,5 +1,6 @@ # frozen_string_literal: true +require "cgi" require_relative "resource" require_relative "../handler/api_operations"