aboutsummaryrefslogtreecommitdiffstats
path: root/notices/notices.js
diff options
context:
space:
mode:
authorDan Finlay <542863+danfinlay@users.noreply.github.com>2018-06-15 00:49:38 +0800
committerGitHub <noreply@github.com>2018-06-15 00:49:38 +0800
commit3a5089da6faa35d6dc20dacbd87717e055a61a34 (patch)
tree3d55d150d69405b8c2d76ca9f3c4511626dbc5fb /notices/notices.js
parent1f83a110b959fcf9d8fa7cedb852f6c665bd0fc5 (diff)
parentc2afb7903522d87345f4a39f7ca3df8fa8889d53 (diff)
downloadtangerine-wallet-browser-3a5089da6faa35d6dc20dacbd87717e055a61a34.tar.gz
tangerine-wallet-browser-3a5089da6faa35d6dc20dacbd87717e055a61a34.tar.zst
tangerine-wallet-browser-3a5089da6faa35d6dc20dacbd87717e055a61a34.zip
Merge pull request #4566 from MetaMask/notice-phishing
Push new notice on recent phishing incidents
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..4ba925408
--- /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: 'Phishing Warning',
+ body: fs.readFileSync(__dirname + '/archive/notice_4.md', 'utf8'),
+ }
+]