Skip to content

Commit 8b1b38d

Browse files
committed
Added group secretaries to those authorise to edit group document meta-information.
- Legacy-Id: 5933
1 parent 88bd027 commit 8b1b38d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/doc/views_doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def document_main(request, name, rev=None):
141141
stream_slugs = StreamName.objects.values_list("slug", flat=True)
142142
can_change_stream = bool(can_edit or (
143143
request.user.is_authenticated() and
144-
Role.objects.filter(name__in=("chair", "auth"),
144+
Role.objects.filter(name__in=("chair", "secr", "auth"),
145145
group__acronym__in=stream_slugs,
146146
person__user=request.user)))
147147
can_edit_iana_state = has_role(request.user, ("Secretariat", "IANA"))

0 commit comments

Comments
 (0)