2a34255e0b
Co-authored-by: Subin <subinthattaparambil@gmail.com> Co-authored-by: Manoj <manojmj92@gmail.com> Co-authored-by: Nithin <webofnithin@gmail.com>
19 lines
619 B
Ruby
19 lines
619 B
Ruby
module Constants::Report
|
|
ACCOUNT_METRICS = [ :conversations_count,
|
|
:incoming_messages_count,
|
|
:outgoing_messages_count,
|
|
:avg_first_response_time,
|
|
:avg_resolution_time,
|
|
:resolutions_count
|
|
]
|
|
|
|
AVG_ACCOUNT_METRICS = [:avg_first_response_time, :avg_resolution_time]
|
|
|
|
|
|
AGENT_METRICS = [ :avg_first_response_time,
|
|
:avg_resolution_time,
|
|
:resolutions_count
|
|
]
|
|
|
|
AVG_AGENT_METRICS = [:avg_first_response_time, :avg_resolution_time]
|
|
end
|