Skip to content

Commit f71d404

Browse files
committed
Fixed a bug which would set the state in the event accompanying a WG activation to 'Proposed', which messes up various views.
- Legacy-Id: 5624
1 parent b183273 commit f71d404

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/wgcharter/views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,8 @@ def approve(request, name):
613613
e = ChangeStateGroupEvent(group=wg, type="changed_state")
614614
e.time = wg.time
615615
e.by = login
616-
e.state_id = "proposed"
617-
e.desc = "Proposed group"
616+
e.state_id = "active"
617+
e.desc = "Charter approved, group active"
618618
e.save()
619619
# update the change description for the email
620620
change_description += " and WG state has been changed to %s" % new_state.name

0 commit comments

Comments
 (0)