Project

Profile

Help

Issue #3755

closed

allow_blank is not set to true for optional fields

Added by bizhang almost 6 years ago. Updated over 4 years ago.

Status:
CLOSED - CURRENTRELEASE
Priority:
Normal
Assignee:
Category:
-
Sprint/Milestone:
Start date:
Due date:
Estimated time:
Severity:
2. Medium
Version:
Platform Release:
OS:
Triaged:
Yes
Groomed:
No
Sprint Candidate:
No
Tags:
Easy Fix
Sprint:
Quarter:

Description

By default allow_blank is set to False:
http://www.django-rest-framework.org/api-guide/fields/#charfield

Optional fields that do not have this set to True have a minlength field in the schema:

description: {
title: "Description",
description: "An optional description.",
type: "string",
minLength: 1
},

So when the field is not being sent in a request, the request fails validation.
Every CharField that does not have required=True should have allow_blank.


Related issues

Related to Pulp - Issue #3964: OpenAPI schema requires Progress Report suffix to be 1 char or longerCLOSED - CURRENTRELEASEdkliban@redhat.comActions
Actions #1

Updated by CodeHeeler almost 6 years ago

  • Triaged changed from No to Yes
Actions #2

Updated by amacdona@redhat.com almost 6 years ago

During triage, I brought up the allow_null option, but we should use allow_blank, as it is preferred by DRF in the docs linked in the description.

Actions #3

Updated by CodeHeeler almost 6 years ago

  • Status changed from NEW to POST
  • Assignee set to CodeHeeler

Added by CodeHeeler almost 6 years ago

Revision bbd50620 | View on GitHub

allow_blank for optional fields

Added allow_blank=True to all CharField serializers that are not required.

fixes #3755 https://pulp.plan.io/issues/3755

Added by CodeHeeler almost 6 years ago

Revision bbd50620 | View on GitHub

allow_blank for optional fields

Added allow_blank=True to all CharField serializers that are not required.

fixes #3755 https://pulp.plan.io/issues/3755

Actions #4

Updated by CodeHeeler almost 6 years ago

  • Status changed from POST to MODIFIED
Actions #5

Updated by daviddavis over 5 years ago

  • Related to Issue #3964: OpenAPI schema requires Progress Report suffix to be 1 char or longer added
Actions #6

Updated by daviddavis almost 5 years ago

  • Sprint/Milestone set to 3.0.0
Actions #7

Updated by bmbouter almost 5 years ago

  • Tags deleted (Pulp 3)
Actions #8

Updated by bmbouter over 4 years ago

  • Status changed from MODIFIED to CLOSED - CURRENTRELEASE

Also available in: Atom PDF