mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-13 07:27:43 +00:00
keep devices around for a month
This commit is contained in:
parent
ec12775621
commit
39ccc1972a
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue