Write out a root.json file w/ the last overall refresh date (useful for threads with no comments to still show the "Last Refreshed")

This commit is contained in:
2025-01-05 17:00:10 -05:00
parent 0460771d5d
commit 834c23735d
2 changed files with 18 additions and 1 deletions

View File

@@ -66,3 +66,9 @@ export type ThreadData = {
},
comments: ThreadComment[],
}
export type RootData = {
refresh?: {
date: Date,
},
}