From 39ccc1972aaca4536646620cf91cd390392c9c5b Mon Sep 17 00:00:00 2001 From: Andre Medeiros Date: Fri, 29 Oct 2021 11:03:58 -0400 Subject: [PATCH] keep devices around for a month --- internal/domain/device.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/domain/device.go b/internal/domain/device.go index f37cd3d..34e7132 100644 --- a/internal/domain/device.go +++ b/internal/domain/device.go @@ -7,8 +7,8 @@ import ( ) const ( - DeviceGracePeriodDuration = 3600 // 1 hour - DeviceActiveAfterReceitCheckDuration = 3600 * 24 * 7 // 1 week + DeviceGracePeriodDuration = 3600 // 1 hour + DeviceActiveAfterReceitCheckDuration = 3600 * 24 * 30 // ~1 month ) type Device struct {