server: do not filter empty and recording for now

This commit is contained in:
2023-11-01 15:13:48 +01:00
committed by Mathieu Virbel
parent 18c0d7a13b
commit fe6d096f6f

View File

@@ -157,8 +157,8 @@ class TranscriptController:
self,
user_id: str | None = None,
order_by: str | None = None,
filter_empty: bool | None = True,
filter_recording: bool | None = True,
filter_empty: bool | None = False,
filter_recording: bool | None = False,
) -> list[Transcript]:
query = transcripts.select().where(transcripts.c.user_id == user_id)