[WEB - 1408] dev: add logo prop and accounts migration (#4558)

* dev: add logo prop and accounts migration

* dev: add default values for id_token

* dev: update is_active as read only field

* dev: delete all sessions when deactivating account

* dev: add issue description binary

* dev: add logo props for team
This commit is contained in:
Nikhil 2024-05-23 18:08:35 +05:30 committed by GitHub
parent 6a3c4eb512
commit b57432818d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 85 additions and 4 deletions

View file

@ -128,6 +128,7 @@ class Issue(ProjectBaseModel):
description = models.JSONField(blank=True, default=dict)
description_html = models.TextField(blank=True, default="<p></p>")
description_stripped = models.TextField(blank=True, null=True)
description_binary = models.BinaryField(null=True)
priority = models.CharField(
max_length=30,
choices=PRIORITY_CHOICES,