stats: display only the last year of contact rate
This commit is contained in:
parent
031c40aa55
commit
a8050ce136
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue