From 187b435eb96947e27ce1283a2f30d78682977183 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Tue, 15 Jul 2025 14:01:06 +0530 Subject: [PATCH] feat: use feature toggle --- .../app/jobs/captain/conversation/response_builder_job.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enterprise/app/jobs/captain/conversation/response_builder_job.rb b/enterprise/app/jobs/captain/conversation/response_builder_job.rb index fa511bab2..3b72f5afc 100644 --- a/enterprise/app/jobs/captain/conversation/response_builder_job.rb +++ b/enterprise/app/jobs/captain/conversation/response_builder_job.rb @@ -112,6 +112,6 @@ class Captain::Conversation::ResponseBuilderJob < ApplicationJob end def captain_v2_enabled? - true + return account.feature_enabled?('captain_integration_v2') end end