From f5a81964c3c0be505b99d610ead100f5e6b41024 Mon Sep 17 00:00:00 2001 From: Sojan Jose Date: Fri, 16 Jan 2026 00:33:18 -0800 Subject: [PATCH] Pass hash params to Linear processor --- .../api/v1/accounts/integrations/linear_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/v1/accounts/integrations/linear_controller.rb b/app/controllers/api/v1/accounts/integrations/linear_controller.rb index eb6525bb1..3c41e445f 100644 --- a/app/controllers/api/v1/accounts/integrations/linear_controller.rb +++ b/app/controllers/api/v1/accounts/integrations/linear_controller.rb @@ -28,7 +28,7 @@ class Api::V1::Accounts::Integrations::LinearController < Api::V1::Accounts::Bas end def create_issue - issue = linear_processor_service.create_issue(permitted_params, Current.user) + issue = linear_processor_service.create_issue(permitted_params.to_h, Current.user) if issue[:error] render json: { error: issue[:error] }, status: :unprocessable_entity else