Fix the number of minutes for a counter to be inactive to 10

This commit is contained in:
guillaume-renaud 2016-10-16 19:30:39 +02:00 committed by Skia
parent 0d6b93d085
commit 7f6424d51e

View File

@ -223,10 +223,10 @@ class Counter(models.Model):
def is_inactive(self):
"""
Returns True if the counter self is inactive from 5 minutes, else False
Returns True if the counter self is inactive from 10 minutes, else False
"""
if (self.is_open()):
return ((timezone.now() - self.permanencies.model.objects.order_by('-activity').first().activity) > datetime.timedelta(minutes=5))
return ((timezone.now() - self.permanencies.model.objects.order_by('-activity').first().activity) > datetime.timedelta(minutes=10))
else:
return False