From 6661ecc9e65505d032a346438822ff80d74deb11 Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Thu, 31 Jul 2025 18:21:00 +0530 Subject: [PATCH] chore: fix rubocop --- enterprise/app/jobs/enterprise/cloudflare_cleanup_job.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/enterprise/app/jobs/enterprise/cloudflare_cleanup_job.rb b/enterprise/app/jobs/enterprise/cloudflare_cleanup_job.rb index 03808702f..91acab67a 100644 --- a/enterprise/app/jobs/enterprise/cloudflare_cleanup_job.rb +++ b/enterprise/app/jobs/enterprise/cloudflare_cleanup_job.rb @@ -1,4 +1,5 @@ module Enterprise::CloudflareCleanupJob + # rubocop:disable Metrics/AbcSize, Metrics/MethodLength def perform return unless ChatwootApp.chatwoot_cloud? @@ -34,4 +35,5 @@ module Enterprise::CloudflareCleanupJob Rails.logger.info 'Completed Cloudflare custom hostname cleanup' end + # rubocop:enable Metrics/AbcSize, Metrics/MethodLength end