stats: display only the last year of contact rate

This commit is contained in:
Pierre de La Morinerie 2019-04-02 14:29:17 +02:00
parent 031c40aa55
commit a8050ce136

View file

@ -162,7 +162,9 @@ class StatsController < ApplicationController
end
def contact_percentage
from = Date.new(2018, 1)
number_of_months = 13
from = Date.today.prev_month(number_of_months)
to = Date.today.prev_month
adapter = Helpscout::UserConversationsAdapter.new(from, to)