Timo Hocker
f57444a3d1
All checks were successful
continuous-integration/drone/push Build is passing
24 lines
363 B
JavaScript
24 lines
363 B
JavaScript
'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
|
|
])
|
|
}
|
|
};
|