aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/bug-notifier.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/scripts/lib/bug-notifier.js')
-rw-r--r--app/scripts/lib/bug-notifier.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/scripts/lib/bug-notifier.js b/app/scripts/lib/bug-notifier.js
new file mode 100644
index 000000000..d6a2ed2c9
--- /dev/null
+++ b/app/scripts/lib/bug-notifier.js
@@ -0,0 +1,24 @@
+class BugNotifier {
+ notify (uri, message) {
+ return postData(uri, message)
+ .then(data => console.log(data)) // JSON from `response.json()` call
+ .catch(error => console.error(error))
+ }
+}
+
+function postData(uri, data) {
+
+ return fetch(url, {
+ body: JSON.stringify(data), // must match 'Content-Type' header
+ credentials: 'same-origin', // include, same-origin, *omit
+ headers: {
+ 'content-type': 'application/json'
+ },
+ method: 'POST', // *GET, POST, PUT, DELETE, etc.
+ mode: 'cors', // no-cors, cors, *same-origin
+ })
+ .then(response => response.json()) // parses response to JSON
+}
+
+module.exports = BugNotifier
+