Make Terms of Service editable at runtime by admins (closes #39)
tos.md was baked into the repo and read once at startup, so changing the terms required a code change and deploy. It's now a Redis-backed singleton (models/tos.js), editable from a new "Terms of Service" card on the admin Dashboard, with the bundled tos.md used only as a one-time seed for new deployments. - routes/tos.js: GET (any authenticated user) / PUT (app_sso_admin only) via /api/tos. Saving can optionally reset every user's tos_accepted flag so they're asked to re-accept -- off by default, since a wording fix shouldn't re-prompt everyone. - routes/index.js: /tos and /onboarding now render the live content instead of a module-level constant computed once at process start.
This commit is contained in:
@@ -1,14 +1,10 @@
|
||||
# Terms of Service
|
||||
|
||||
*Last updated: June 2026*
|
||||
|
||||
> **This is a template.** SSO Manager ships this file as a starting point for
|
||||
> operators to adapt to their own deployment, organization name, and
|
||||
> jurisdiction. Replace the placeholder text below (or the whole document)
|
||||
> with terms reviewed by your own admin/legal before relying on it. See
|
||||
> [issue #39](https://github.com/theta42/sso-manager-node/issues/39) for the
|
||||
> planned admin UI that will let operators edit this document without a code
|
||||
> change.
|
||||
> **This is a template.** SSO Manager ships this file as the initial seed for
|
||||
> a new deployment's Terms of Service. Edit it from the admin Dashboard's
|
||||
> "Terms of Service" card (no code change or redeploy needed) to adapt it to
|
||||
> your own organization and jurisdiction before relying on it — this file
|
||||
> itself is only read once, to seed that first version.
|
||||
|
||||
Welcome. By creating an account and using any services on this system, you agree to the following terms. Please read them carefully — they're short and written in plain English.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user