diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-06-19 06:11:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-19 06:11:16 +0800 |
commit | 4598554fea7b9435e5cbecc4735c479ffbadf37e (patch) | |
tree | 338aaee17d433383c9a57b385489cbc8df3f82d0 /notices/notices.js | |
parent | 39a7702c8f0aa2c2e7fdf2bcf913e76bb8b827f4 (diff) | |
parent | 0e3ecbbc4f7ab0579a33bf315af4dfafeb43f339 (diff) | |
download | tangerine-wallet-browser-4598554fea7b9435e5cbecc4735c479ffbadf37e.tar tangerine-wallet-browser-4598554fea7b9435e5cbecc4735c479ffbadf37e.tar.gz tangerine-wallet-browser-4598554fea7b9435e5cbecc4735c479ffbadf37e.tar.bz2 tangerine-wallet-browser-4598554fea7b9435e5cbecc4735c479ffbadf37e.tar.lz tangerine-wallet-browser-4598554fea7b9435e5cbecc4735c479ffbadf37e.tar.xz tangerine-wallet-browser-4598554fea7b9435e5cbecc4735c479ffbadf37e.tar.zst tangerine-wallet-browser-4598554fea7b9435e5cbecc4735c479ffbadf37e.zip |
Merge pull request #4603 from MetaMask/v4.8.0
V4.8.0
Diffstat (limited to 'notices/notices.js')
-rw-r--r-- | notices/notices.js | 34 |
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'), + } +] |