aboutsummaryrefslogtreecommitdiffstats
path: root/notices/notice-delete.js
diff options
context:
space:
mode:
Diffstat (limited to 'notices/notice-delete.js')
-rw-r--r--notices/notice-delete.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/notices/notice-delete.js b/notices/notice-delete.js
new file mode 100644
index 000000000..652f96159
--- /dev/null
+++ b/notices/notice-delete.js
@@ -0,0 +1,27 @@
+var fs = require('fs')
+var path = require('path')
+var prompt = require('prompt')
+var open = require('open')
+var extend = require('extend')
+var notices = require('./notices.json')
+
+
+console.log('List of Notices')
+console.log(`ID \t DATE \t\t\t TITLE`)
+notices.forEach((notice) => {
+ console.log(`${(' ' + notice.id).slice(-2)} \t ${notice.date} \t ${notice.title}`)
+})
+prompt.get(['id'], (error, res) => {
+prompt.start()
+ if (error) {
+ console.log("Exiting...")
+ process.exit()
+ }
+ var index = notices.findIndex((notice) => { return notice.id == res.id})
+ if (index === -1) {
+ console.log('Notice not found. Exiting...')
+ }
+ notices.splice(index, 1)
+ fs.unlink(`notices/archive/notice_${res.id}.md`)
+ fs.writeFile(`notices/notices.json`, JSON.stringify(notices))
+})