Merge pull request #457 from Monadical-SAS/remove-is-active-check

Remove is active check
This commit is contained in:
2025-02-05 13:02:39 +01:00
committed by GitHub

View File

@@ -124,7 +124,6 @@ class MeetingController:
.where( .where(
sa.and_( sa.and_(
meetings.c.room_id == room.id, meetings.c.room_id == room.id,
meetings.c.is_active,
meetings.c.end_date > current_time, meetings.c.end_date > current_time,
) )
) )