Skip to content

Commit

Permalink
Update backend/apps/owasp/models/event.py
Browse files Browse the repository at this point in the history
Co-authored-by: Arkadii Yakovets <2201626+arkid15r@users.noreply.github.com>
  • Loading branch information
abhayymishraa and arkid15r authored Feb 28, 2025
1 parent b5d0390 commit 9b37d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/apps/owasp/models/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Meta:
key = models.CharField(verbose_name="Key", max_length=100, unique=True)
name = models.CharField(verbose_name="Name", max_length=100)
description = models.TextField(verbose_name="Description", default="", blank=True)
start_date = models.DateField(verbose_name="Start Date", default="2025-01-01", blank=True)
start_date = models.DateField(verbose_name="Start Date")
url = models.URLField(verbose_name="URL", default="", blank=True)

def __str__(self):
Expand Down

0 comments on commit 9b37d90

Please sign in to comment.