Skip to content

Commit

Permalink
Merge pull request #78 from HXSecurity/Bidaya0-patch-fix-project-defa…
Browse files Browse the repository at this point in the history
…ult-value

Update project.py
  • Loading branch information
Bidaya0 authored Jan 14, 2022
2 parents 3b08080 + c1cb927 commit 841498e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dongtai/models/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ class IastProject(models.Model):
blank=True,
null=False,
choices=VulValidation.choices)
base_url = models.CharField(max_length=255, blank=True, null=True)
base_url = models.CharField(max_length=255, blank=True, default='')
test_req_header_key = models.CharField(max_length=511,
blank=True,
null=True)
default='')
test_req_header_value = models.CharField(max_length=511,
blank=True,
null=True)
default='')

class Meta:
managed = get_managed()
Expand Down

0 comments on commit 841498e

Please sign in to comment.