Add TODO for brighter days

This commit is contained in:
2018-08-16 19:12:10 +02:00
parent 05996db884
commit a8053004ec

View File

@@ -28,6 +28,7 @@ class ClientToken(models.Model):
token = models.CharField(max_length=200, db_index=True)
hostname = models.CharField(max_length=100, blank=True) # The hostname of the Benchmark client
date_created = models.DateTimeField(auto_now_add=True)
# TODO(fsiddi) add a date_last_used to show the activity of a client in the UI
is_valid = models.BooleanField(default=True)
class Meta: