Skip to content

Commit 980ad98

Browse files
committed
Merged in [7204] from rjsparks@nostrum.com:
Adds the IAB-parented sessions to the set of things returned as \'areas\'. Fixes bug ietf-tools#1288 - Legacy-Id: 7272 Note: SVN reference [7204] has been migrated to Git commit b1e0ba3
2 parents dfd9b98 + 036d824 commit 980ad98

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/meeting/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,14 +520,14 @@ def sessions_that_can_meet(self):
520520
return self.cached_sessions_that_can_meet
521521

522522
def area_list(self):
523-
return ( self.assignments.filter(session__group__type__slug__in=['wg', 'rg', 'ag'],
523+
return ( self.assignments.filter(session__group__type__slug__in=['wg', 'rg', 'ag', 'iab'],
524524
session__group__parent__isnull=False)
525525
.order_by('session__group__parent__acronym')
526526
.values_list('session__group__parent__acronym', flat=True)
527527
.distinct() )
528528

529529
def groups(self):
530-
return Group.objects.filter(type__slug__in=['wg', 'rg', 'ag'], session__scheduledsession__schedule=self).distinct().order_by('parent__acronym', 'acronym')
530+
return Group.objects.filter(type__slug__in=['wg', 'rg', 'ag', 'iab'], session__scheduledsession__schedule=self).distinct().order_by('parent__acronym', 'acronym')
531531

532532
class ScheduledSession(models.Model):
533533
"""

0 commit comments

Comments
 (0)