aboutsummaryrefslogtreecommitdiffstats
path: root/notices/notices.js
diff options
context:
space:
mode:
authorThomas Huang <tmashuang@users.noreply.github.com>2019-04-02 09:03:54 +0800
committerWhymarrh Whitby <whymarrh.whitby@gmail.com>2019-04-02 09:03:54 +0800
commita46ec83c9b258a3aed65e1ef08769300c01ca13b (patch)
treea48f7ddb8635ffbb024ff755d1865686c8a0ab27 /notices/notices.js
parent4055dc3475cb743e540766a8a8c704bb2b807502 (diff)
downloadtangerine-wallet-browser-a46ec83c9b258a3aed65e1ef08769300c01ca13b.tar.gz
tangerine-wallet-browser-a46ec83c9b258a3aed65e1ef08769300c01ca13b.tar.zst
tangerine-wallet-browser-a46ec83c9b258a3aed65e1ef08769300c01ca13b.zip
Remove NoticeController (#6382)
Diffstat (limited to 'notices/notices.js')
-rw-r--r--notices/notices.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/notices/notices.js b/notices/notices.js
deleted file mode 100644
index 6392b6381..000000000
--- a/notices/notices.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// fs.readFileSync is inlined by browserify transform "brfs"
-const fs = require('fs')
-const path = require('path')
-
-module.exports = [
- {
- id: 0,
- read: false,
- date: 'Thu Feb 09 2017',
- title: 'Terms of Use',
- body: fs.readFileSync(path.join(__dirname, '/archive', 'notice_0.md'), 'utf8'),
- },
- {
- id: 2,
- read: false,
- date: 'Mon May 08 2017',
- title: 'Privacy Notice',
- body: fs.readFileSync(path.join(__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(path.join(__dirname, '/archive', 'notice_3.md'), 'utf8'),
- },
- {
- id: 4,
- read: false,
- date: 'Wed Jun 13 2018',
- title: 'Phishing Warning',
- body: fs.readFileSync(path.join(__dirname, '/archive', 'notice_4.md'), 'utf8'),
- },
-]