Skip to content

Commit 676d850

Browse files
committed
Reverted an unneded 'fix' for RG chair document access, which caused 1wg-summary.txt to erroneously include RGs.
- Legacy-Id: 5995
1 parent 603f8b9 commit 676d850

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class IETFWG(Group):
100100
group_acronym__acronym__in="acronym__in",
101101
group_acronym__acronym__contains="acronym__contains",
102102
email_archive__startswith="list_archive__startswith",
103-
group_type=lambda v: ("type__in", { 1: ("wg", "rg") }[int(v)]),
103+
group_type=lambda v: ("type__in", { 1: ("wg",), 2: ("wg", "rg") }[int(v)]),
104104
status=lambda v: ("state__in", { 1: ("active", "bof") }[int(v)]),
105105
areagroup__area__status=lambda v: ("parent__state", { 1: "active" }[v]),
106106
start_date__isnull=lambda v: None if v else ("groupevent__changestategroupevent__state__slug", "active"),

0 commit comments

Comments
 (0)