Skip to content

Commit 883ec1d

Browse files
committed
Do not require approval for individual submissions. Fixes ietf-tools#623
- Legacy-Id: 2895
1 parent 8db45b0 commit 883ec1d

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

ietf/submit/views.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,11 @@ def draft_status(request, submission_id, submission_hash=None, message=None):
109109
approved_detail = IdApprovedDetail.objects.get(filename=detail.filename)
110110
except ObjectDoesNotExist:
111111
approved_detail = None
112+
if detail.group_acronym and not approved_detail:
112113
detail.status_id = INITIAL_VERSION_APPROVAL_REQUESTED
113114
detail.save()
115+
else:
116+
approved_detail = True
114117

115118
if detail.revision == '00' and not approved_detail:
116119
submitter = auto_post_form.save_submitter_info()

0 commit comments

Comments
 (0)