AppReports/lib/defaults.js

24 lines
363 B
JavaScript
Raw Permalink Normal View History

2020-08-25 15:24:20 +02:00
'use strict';
module.exports = {
app: {
/**
* reduce data after given time durations
* 1. delete duplicates (1 day)
* 2. divide by 2 (1 week)
* ...
* 7. delete all (6 weeks)
*/
reduction: JSON.stringify ([
86400,
604800,
1209600,
1814400,
2419200,
3024000,
3628800
])
}
};