Skip to content

Commit

Permalink
fix: group recordings (#25939)
Browse files Browse the repository at this point in the history
  • Loading branch information
aspicer authored Oct 31, 2024
1 parent 395e64d commit 64c3342
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions posthog/hogql_queries/actor_strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_actors(self, actor_ids) -> dict[str, dict]:
raise NotImplementedError()

def get_recordings(self, matching_events) -> dict[str, list[dict]]:
return {}
return RecordingsHelper(self.team).get_recordings(matching_events)

def input_columns(self) -> list[str]:
raise NotImplementedError()
Expand Down Expand Up @@ -88,9 +88,6 @@ def get_actors(self, actor_ids, order_by: str = "") -> dict[str, dict]:

return person_uuid_to_person

def get_recordings(self, matching_events) -> dict[str, list[dict]]:
return RecordingsHelper(self.team).get_recordings(matching_events)

def input_columns(self) -> list[str]:
return ["person", "id", "created_at", "person.$delete"]

Expand Down

0 comments on commit 64c3342

Please sign in to comment.