Skip to content

Commit

Permalink
Merge pull request #184 from dimagi/sk/messaging-events-new
Browse files Browse the repository at this point in the history
update date filtering params for messaging-event
  • Loading branch information
snopoke authored Jun 17, 2021
2 parents 2f1f679 + 76c01a1 commit 89e087e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commcare_export/commcare_minilinq.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __call__(self, since, until):
DATE_PARAMS = {
'indexed_on': SimpleSinceParams('indexed_on_start', 'indexed_on_end'),
'server_date_modified': SimpleSinceParams('server_date_modified_start', 'server_date_modified_end'),
'date': SimpleSinceParams('date__gte', 'date__lt'), # used by messaging-events
'date': SimpleSinceParams('date.gte', 'date.lt'), # used by messaging-events
}


Expand Down

0 comments on commit 89e087e

Please sign in to comment.