Skip to content

Commit 19fcb37

Browse files
committed
Merged in [17483] from peter@akayla.com:
Changed so that only WGs/RGs can be closed, per RJS. Fixes ietf-tools#1578. - Legacy-Id: 17503 Note: SVN reference [17483] has been migrated to Git commit 4737f05
2 parents 768a4df + 4737f05 commit 19fcb37

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def construct_group_menu_context(request, group, selected, group_type, others):
247247
if group.features.customize_workflow and can_manage:
248248
actions.append(("Customize workflow", urlreverse("ietf.group.views.customize_workflow", kwargs=kwargs)))
249249

250-
if group.state_id in ("active", "dormant") and not group.type_id in ["sdo", "rfcedtyp", "isoc", ] and can_manage_group_type(request.user, group):
250+
if group.state_id in ("active", "dormant") and group.type_id in ["wg", "rg", ] and can_manage_group_type(request.user, group):
251251
actions.append(("Request closing group", urlreverse("ietf.group.views.conclude", kwargs=kwargs)))
252252

253253
d = {

0 commit comments

Comments
 (0)