Skip to content

Commit c7c89a6

Browse files
committed
Fixed a small issue with the filter expression to select ADs for active groups.
- Legacy-Id: 9181
1 parent e81ac58 commit c7c89a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/community/rules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def get_documents(self):
6767
return Document.objects.filter(type='draft', states__slug='active').filter(ad=self.value).distinct()
6868

6969
def options(self):
70-
return [(i.pk, i.name) for i in Person.objects.filter(role__name='ad',group__state='active').distinct().order_by('name')]
70+
return [(i.pk, i.name) for i in Person.objects.filter(role__name='ad',role__group__state='active').distinct().order_by('name')]
7171

7272
def show_value(self):
7373
try:

0 commit comments

Comments
 (0)