mirror of
https://github.com/ae-utbm/sith.git
synced 2026-06-15 12:39:27 +00:00
Merge pull request #1428 from ae-utbm/fix-session-barmen
CounterLogin: manage case where barman is already logged in another device
This commit is contained in:
+1
-1
@@ -1117,7 +1117,7 @@ class Permanency(models.Model):
|
||||
on_delete=models.CASCADE,
|
||||
)
|
||||
start = models.DateTimeField(_("start date"))
|
||||
end = models.DateTimeField(_("end date"), null=True, db_index=True)
|
||||
end = models.DateTimeField(_("end date"), null=True, blank=True, db_index=True)
|
||||
activity = models.DateTimeField(_("last activity date"), auto_now=True)
|
||||
|
||||
class Meta:
|
||||
|
||||
Reference in New Issue
Block a user