From bfde86f52bf2a7f31a3b49ecc71e98fba92444bf Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Thu, 10 Oct 2013 15:54:32 +0000 Subject: [PATCH] Add support for status change in Document.get_file_path, ideally someone would clean up the directory structure and we would transition to something simpler - Legacy-Id: 6409 --- ietf/doc/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ietf/doc/models.py b/ietf/doc/models.py index 0c700cb3f..ef0ae4507 100644 --- a/ietf/doc/models.py +++ b/ietf/doc/models.py @@ -80,6 +80,8 @@ class DocumentInfo(models.Model): return settings.CHARTER_PATH elif self.type_id == "conflrev": return settings.CONFLICT_REVIEW_PATH + elif self.type_id == "statchg": + return settings.STATUS_CHANGE_PATH else: raise NotImplemented