Skip to content

Commit 0825281

Browse files
committed
Merged in [13830] from rjsparks@nostrum.com:
Show all the sessions for area groups in the proceedings. Fixes ietf-tools#2265. Should be patched into production. - Legacy-Id: 13831 Note: SVN reference [13830] has been migrated to Git commit 68d70aa
2 parents 95ddc35 + 68d70aa commit 0825281

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)