Skip to content

Commit 7751f54

Browse files
committed
Make materials links on the ietf materials page visible to group delegates.
- Legacy-Id: 13939
1 parent 3b4992d commit 7751f54

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/doc/templatetags/managed_groups.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ def managed_groups(user):
1717
# state__slug='active').select_related("type"))
1818

1919
groups.extend(Group.objects.filter(
20-
role__name__slug='chair',
20+
role__name__slug__in=['chair', 'delegate', ],
2121
role__person__user=user,
22-
type__slug__in=('rg', 'wg', 'ag'),
22+
type__slug__in=('rg', 'wg', 'ag', 'ietf'),
2323
state__slug__in=('active', 'bof')).select_related("type"))
2424

2525
return groups

0 commit comments

Comments
 (0)