Skip to content

Commit ebc6608

Browse files
committed
Merged in part of [7375] from jmh@joelhalpern.com.
Now sending draft update notices to IRSG for IRTF stream drafts. Fixes issue ietf-tools#1227. - Legacy-Id: 7402 Note: SVN reference [7375] has been migrated to Git commit 5f89d9a
1 parent b297c67 commit ebc6608

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

ietf/doc/views_draft.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,12 @@ def change_stream(request, name):
230230
old_stream = doc.stream
231231

232232
if new_stream != old_stream:
233+
if new_stream and new_stream.slug and new_stream.slug == "irtf":
234+
if not doc.notify:
235+
doc.notify = "irtf@irtf.org"
236+
elif "irtf@irtf.org" not in doc.notify:
237+
doc.notify += ", irtf@irtf.org"
238+
233239
save_document_in_history(doc)
234240

235241
doc.stream = new_stream

0 commit comments

Comments
 (0)