feat(google-tasks): add new completed tasks trigger

This commit is contained in:
Rıdvan Akca
2024-01-16 17:30:25 +03:00
parent cab040c74a
commit 06b040412a
3 changed files with 63 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
import newCompletedTasks from './new-completed-tasks/index.js';
import newTaskLists from './new-task-lists/index.js';
import newTasks from './new-tasks/index.js';
export default [newTaskLists, newTasks];
export default [newCompletedTasks, newTaskLists, newTasks];