aboutsummaryrefslogtreecommitdiffstats
path: root/api.js
diff options
context:
space:
mode:
Diffstat (limited to 'api.js')
-rw-r--r--api.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/api.js b/api.js
deleted file mode 100644
index 3441967..0000000
--- a/api.js
+++ /dev/null
@@ -1,31 +0,0 @@
-const API = 'https://apps.pruss.it/api'
-
-export const login = ({ email, password }) => fetch(`${API}/login`, {
- method: 'POST',
- headers: { 'Content-Type': 'plain/text; charset=utf-8' },
- body: JSON.stringify({ email, password })
-})
-
-export const getList = ({ session }) => fetch(`${API}/notes`, {
- 'Cookie': session.cookies
-})
-
-export const getNote = ({ note, session }) => fetch(`${API}/notes/${note.noteId}`, {
- method: 'GET', headers: { 'Cookie': session.cookies },
-})
-
-export const createNote = ({ title, content, session }) => fetch(`${API}/notes`, {
- method: 'POST',
- headers: { 'Content-Type': 'plain/text; charset=utf-8', 'Cookie': session.cookies },
- body: JSON.stringify({ title, content })
-})
-
-export const editNote = ({ note, title, content, session }) => fetch(`${API}/notes/${note._id}`, {
- method: 'PUT',
- headers: { 'Content-Type': 'plain/text; charset=utf-8', 'Cookie': session.cookies },
- body: JSON.stringify({ title, noteId: note.noteId, content })
-})
-
-export const removeNote = ({ note, session }) => fetch(`${API}/notes/${note._id}`, {
- method: 'DELETE', headers: { 'Cookie': session.cookies },
-})