From d63da083e0c781b251ad907aeb3f9dbaa529069e Mon Sep 17 00:00:00 2001 From: Mike Simpson Date: Wed, 8 Feb 2023 12:04:33 +0000 Subject: [PATCH] Add Project-specific Privacy Policy Info to Config --- app/src/cc-config.json | 1 + app/src/cc-config.ts | 1 + app/src/frontend/pages/privacy-policy.tsx | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/cc-config.json b/app/src/cc-config.json index 26668bd4..13d4a764 100644 --- a/app/src/cc-config.json +++ b/app/src/cc-config.json @@ -2,6 +2,7 @@ "cityName": "London", "projectBlurb": "Colouring London is also the prototype for the Colouring Cities Research Programme (CCRP)", "githubURL": "https://github.com/colouring-cities/colouring-london", + "privacyStatement": "Colouring London stores your data at The Alan Turing Institute in London behind the organisation’s firewall in a secure database using industry standard practices.", "initialMapPosition": [ 51.5245255, -0.1338422 ], "initialZoomLevel": 16 diff --git a/app/src/cc-config.ts b/app/src/cc-config.ts index fa4c0613..905cf5db 100644 --- a/app/src/cc-config.ts +++ b/app/src/cc-config.ts @@ -3,6 +3,7 @@ export interface CCConfig cityName: string; projectBlurb: string; githubURL: string; + privacyStatement: string; initialMapPosition: [number, number]; initialZoomLevel: number; diff --git a/app/src/frontend/pages/privacy-policy.tsx b/app/src/frontend/pages/privacy-policy.tsx index 6eee9238..2a4a0c2f 100644 --- a/app/src/frontend/pages/privacy-policy.tsx +++ b/app/src/frontend/pages/privacy-policy.tsx @@ -41,7 +41,7 @@ const PrivacyPolicyPage: React.SFC = () => (

How do we store your data?

- Colouring {config.cityName} stores your data at The Alan Turing Institute in London behind the organisation’s firewall in a secure database using industry standard practices. + {config.privacyStatement}

How do we use cookies?