Skip to content

Commit 68d70aa

Browse files
committed
Show all the sessions for area groups in the proceedings. Fixes ietf-tools#2265. Commit ready for merge. Should be patched into production.
- Legacy-Id: 13830
1 parent 24ce4c1 commit 68d70aa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/meeting/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ def drafts(self):
907907
return list(self.materials.filter(type='draft'))
908908

909909
def all_meeting_sessions_for_group(self):
910-
if self.group.type_id in ['wg','rg']:
910+
if self.group.type_id in ['wg','rg','ag']:
911911
if not hasattr(self, "_all_meeting_sessions_for_group_cache"):
912912
sessions = [s for s in self.meeting.session_set.filter(group=self.group,type=self.type) if s.official_timeslotassignment()]
913913
self._all_meeting_sessions_for_group_cache = sorted(sessions, key = lambda x: x.official_timeslotassignment().timeslot.time)

0 commit comments

Comments
 (0)