feat: module view props (#882)

This commit is contained in:
pablohashescobar 2023-04-22 18:16:16 +05:30 committed by GitHub
parent 16781a71fe
commit e53847c59e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,6 +39,7 @@ class Module(ProjectBaseModel):
through="ModuleMember",
through_fields=("module", "member"),
)
view_props = models.JSONField(default=dict)
class Meta:
unique_together = ["name", "project"]