Skip to content

Commit

Permalink
Merged branch bugfix/fix-filter-sources into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
horia141 committed Mar 4, 2024
1 parent 78d262e commit 735a687
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/jupiter/core/domain/gen/service/gen_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ async def do_it(
InboxTask
).find_all_generic(
parent_ref_id=inbox_task_collection.ref_id,
filter_sources=[InboxTaskSource.HABIT],
source=[InboxTaskSource.HABIT],
allow_archived=True,
habit_ref_id=[rt.ref_id for rt in all_habits],
habitref_id=[rt.ref_id for rt in all_habits],
)

all_inbox_tasks_by_habit_ref_id_and_timeline: Dict[
Expand Down Expand Up @@ -254,7 +254,7 @@ async def do_it(
InboxTask
).find_all_generic(
parent_ref_id=inbox_task_collection.ref_id,
filter_sources=[InboxTaskSource.CHORE],
source=[InboxTaskSource.CHORE],
allow_archived=True,
chore_ref_id=[rt.ref_id for rt in all_chores],
)
Expand Down Expand Up @@ -310,7 +310,7 @@ async def do_it(
InboxTask
).find_all_generic(
parent_ref_id=inbox_task_collection.ref_id,
filter_sources=[InboxTaskSource.METRIC],
source=[InboxTaskSource.METRIC],
allow_archived=True,
metric_ref_id=[m.ref_id for m in all_metrics],
)
Expand Down

0 comments on commit 735a687

Please sign in to comment.