aboutsummaryrefslogtreecommitdiffstats
path: root/notices/notices.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2018-06-14 13:56:46 +0800
committerkumavis <aaron@kumavis.me>2018-06-14 13:56:46 +0800
commitac8b56a00defff4cb44a6a34251a19d8ab6159b6 (patch)
tree5ed3feadb4d416098d3b69d86d7c13b591a54f3e /notices/notices.js
parent4481c7be449b31b2aa5cf97ed996576f66ecedce (diff)
downloadtangerine-wallet-browser-ac8b56a00defff4cb44a6a34251a19d8ab6159b6.tar
tangerine-wallet-browser-ac8b56a00defff4cb44a6a34251a19d8ab6159b6.tar.gz
tangerine-wallet-browser-ac8b56a00defff4cb44a6a34251a19d8ab6159b6.tar.bz2
tangerine-wallet-browser-ac8b56a00defff4cb44a6a34251a19d8ab6159b6.tar.lz
tangerine-wallet-browser-ac8b56a00defff4cb44a6a34251a19d8ab6159b6.tar.xz
tangerine-wallet-browser-ac8b56a00defff4cb44a6a34251a19d8ab6159b6.tar.zst
tangerine-wallet-browser-ac8b56a00defff4cb44a6a34251a19d8ab6159b6.zip
notices - notices collection is now manually edited
Diffstat (limited to 'notices/notices.js')
-rw-r--r--notices/notices.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/notices/notices.js b/notices/notices.js
new file mode 100644
index 000000000..fb2d9cdb5
--- /dev/null
+++ b/notices/notices.js
@@ -0,0 +1,34 @@
+// fs.readFileSync is inlined by browserify transform "brfs"
+const fs = require('fs')
+
+module.exports = [
+ {
+ id: 0,
+ read: false,
+ date: 'Thu Feb 09 2017',
+ title: 'Terms of Use',
+ body: fs.readFileSync(__dirname + '/archive/notice_0.md', 'utf8'),
+ },
+ {
+ id: 2,
+ read: false,
+ date: 'Mon May 08 2017',
+ title: 'Privacy Notice',
+ body: fs.readFileSync(__dirname + '/archive/notice_2.md', 'utf8'),
+ },
+ {
+ id: 3,
+ read: false,
+ date: 'Tue Nov 28 2017',
+ title: 'Seed Phrase Alert',
+ firstVersion: '<=3.12.0',
+ body: fs.readFileSync(__dirname + '/archive/notice_3.md', 'utf8'),
+ },
+ {
+ id: 4,
+ read: false,
+ date: 'Wed Jun 13 2018',
+ title: 'Concerning Recent Phishing Incidents',
+ body: fs.readFileSync(__dirname + '/archive/notice_4.md', 'utf8'),
+ }
+]