Add todo + remove pending features that are already done

This commit is contained in:
David Dworken 2022-04-16 12:39:28 -07:00
parent d7d8c0adf1
commit d7ad96906f
2 changed files with 2 additions and 3 deletions

View File

@ -81,6 +81,4 @@ When the user runs `hishtory query`, it retrieves all unread blobs from the back
* zsh support * zsh support
* mac support * mac support
* automatic test running in github actions
* support for filtering out items in a search query via `-foo`
* support for verifying the attestations tied to updates * support for verifying the attestations tied to updates

View File

@ -286,6 +286,7 @@ func cleanDatabase() error {
if result.Error != nil { if result.Error != nil {
return result.Error return result.Error
} }
// TODO: Clean the database by deleting entries for users that haven't been used in X amount of time
return nil return nil
} }