From be8ad1a8889a7389bb5f67f8a09c7af2d58c493e Mon Sep 17 00:00:00 2001 From: Kyle Drake Date: Tue, 6 Jan 2015 19:24:41 -0800 Subject: [PATCH] hotfix for limit pagination for customer data --- app/stats.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/stats.rb b/app/stats.rb index 390a294e..0eb0d8cf 100644 --- a/app/stats.rb +++ b/app/stats.rb @@ -36,7 +36,7 @@ get '/stats/?' do @stats[:monthly_stats] = monthly_stats - customers = Stripe::Customer.all + customers = Stripe::Customer.all limit: 100000 @stats[:total_recurring_revenue] = 0.0