feat(legal): single POLICY_LAST_UPDATED constant + refresh stale "January 2025" #100
No reviewers
Labels
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
psa-systems/bunyip!100
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/bunyip-upgrade-07-legal-dates"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Terms of Service and Privacy Policy both rendered "Last updated: January 2025" while the site footer showed "© 2026". The implicit signal "this site is stale" is corrosive on a paid SaaS landing page, and the two pages were drifting independently because the literal lived in two places.
Adds
const POLICY_LAST_UPDATED: &str = "June 2026"at the top ofcontent.rsand routes both legal-page renders through it. The constant carries a comment that names the maintainer policy: bump the date the SAME COMMIT you re-read the policy body for accuracy, never just to make the page look fresh. The commit becomes the signal that the text was reviewed; a stale date is then a real signal too.Future bumps are a one-line change at the constant; the two
Last updated: …lines automatically follow. Closes audit finding 11 (Terms / Privacy stale dates). Seedocs/bunyip-upgrade/07-content-page-dates.mdfor the full spec.