mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-26 16:53:52 +00:00
15 lines
344 B
JavaScript
15 lines
344 B
JavaScript
|
|
import moment from 'moment';
|
||
|
|
import _ from 'lodash';
|
||
|
|
|
||
|
|
/*
|
||
|
|
Preen 3-day past-completed To-Dos from Angular & mobile app
|
||
|
|
*/
|
||
|
|
|
||
|
|
module.exports = function(tasks) {
|
||
|
|
return _.filter(tasks, function(t) {
|
||
|
|
return !t.completed || (t.challenge && t.challenge.id) || moment(t.dateCompleted).isAfter(moment().subtract({
|
||
|
|
days: 3
|
||
|
|
}));
|
||
|
|
});
|
||
|
|
};
|