Fix missing newline in zshrc, add test for hishtory redact prompting, and tag TODOs with plans

This commit is contained in:
David Dworken
2022-09-22 18:22:06 -07:00
parent bd70b68ffc
commit c6d4f1ef68
4 changed files with 26 additions and 4 deletions

View File

@ -547,7 +547,7 @@ func cleanDatabase() error {
if result.Error != nil {
return result.Error
}
// TODO(future): Clean the database by deleting entries for users that haven't been used in X amount of time
// TODO(optimization): Clean the database by deleting entries for users that haven't been used in X amount of time
return nil
}
@ -570,4 +570,4 @@ func main() {
log.Fatal(http.ListenAndServe(":8080", nil))
}
// TODO: Maybe optimize the endpoints a bit to reduce the number of round trips required?
// TODO(optimization): Maybe optimize the endpoints a bit to reduce the number of round trips required?