linstrom/storage/housekeeping.go

12 lines
403 B
Go
Raw Permalink Normal View History

2024-09-13 13:22:11 +00:00
package storage
// Contains various functions for housekeeping
// Things like true deletion of soft deleted data after some time
// Or removing inactive access tokens
// All of this will be handled by goroutines
2024-09-15 13:18:05 +00:00
// TODO: Delete everything soft deleted and older than a month
// TODO: Delete old tokens not in active use anymore
// TODO: Start jobs where the last check-in was more than an hour ago
//