From b96678a2e9c36c39a1570882649dc38a1609ba6f Mon Sep 17 00:00:00 2001 From: Rick Barrette Date: Wed, 4 Mar 2026 20:09:13 -0500 Subject: [PATCH] fixed accident deleteion details_cache_key --- app/models/customer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/customer.rb b/app/models/customer.rb index afe98ef..7b56cfc 100644 --- a/app/models/customer.rb +++ b/app/models/customer.rb @@ -47,7 +47,7 @@ class Customer < ActiveRecord::Base end # Generates a unique cache key for storing this customer's QBO details. - def + def details_cache_key "customer:#{id}:qbo_details:#{updated_at.to_i}" end