feat: add cover image to project (#353)

This commit is contained in:
pablohashescobar 2023-03-06 18:57:20 +05:30 committed by GitHub
parent 689eaad0f0
commit ae64b53cf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,6 +63,7 @@ class Project(BaseModel):
icon = models.CharField(max_length=255, null=True, blank=True)
module_view = models.BooleanField(default=True)
cycle_view = models.BooleanField(default=True)
cover_image = models.URLField(blank=True, null=True)
def __str__(self):
"""Return name of the project"""