turn a comment into a todo

This commit is contained in:
Laura Klünder 2024-08-17 17:16:01 +02:00
parent 168a6a5af6
commit 703d39ebd6

View file

@ -461,7 +461,7 @@ class BeaconMeasurement(SpaceGeometryMixin, models.Model):
author = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.SET_NULL, null=True, blank=True,
verbose_name=_('author'))
comment = models.TextField(null=True, blank=True, verbose_name=_('comment'))
data = models.JSONField(_('Measurement list'), default=dict) # would be nice if this used pydantic
data = models.JSONField(_('Measurement list'), default=dict) # todo: would be nice if this used pydantic
class Meta:
verbose_name = _('Beacon Measurement')