From 827f5fb21425cde7f007c11578d046cc842aa049 Mon Sep 17 00:00:00 2001 From: Priya Rani Date: Thu, 18 Jan 2024 14:04:43 +0530 Subject: [PATCH] OTWO-7176 Handle null thirty_day_commits for NilAccountAnalysisFact (#1763) --- app/null_models/nil_account_analysis_fact.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/null_models/nil_account_analysis_fact.rb b/app/null_models/nil_account_analysis_fact.rb index 44eb0d466..a6f45ff30 100644 --- a/app/null_models/nil_account_analysis_fact.rb +++ b/app/null_models/nil_account_analysis_fact.rb @@ -4,5 +4,5 @@ class NilAccountAnalysisFact < NullObject attr_reader :first_checkin, :last_checkin empty_methods :commits_by_language, :commits_by_project, :name_language_facts - nought_methods :commits + nought_methods :commits, :thirty_day_commits, :twelve_month_commits end