Kasianov Nikolai Alekseevich
1 year ago
7 changed files with 126 additions and 78 deletions
@ -0,0 +1,59 @@ |
|||||||
|
/* |
||||||
|
Copyright (c) 2023 Kasyanov Nikolay Alexeyevich (Unbewohnte) |
||||||
|
*/ |
||||||
|
|
||||||
|
|
||||||
|
async function post_new_todo(username, password, new_todo) { |
||||||
|
return fetch("/api/todo", { |
||||||
|
method: "POST", |
||||||
|
headers: { |
||||||
|
"EncryptedBase64": "false", |
||||||
|
"Auth": username + "<-->" + password, |
||||||
|
"Content-Type": "application/json", |
||||||
|
}, |
||||||
|
body: JSON.stringify(new_todo), |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
async function get_todos(username, password) { |
||||||
|
return fetch("/api/todo", { |
||||||
|
method: "GET", |
||||||
|
headers: { |
||||||
|
"EncryptedBase64": "false", |
||||||
|
"Auth": username + "<-->" + password |
||||||
|
}, |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
async function get_todo_groups(username, password) { |
||||||
|
return fetch("/api/group", { |
||||||
|
method: "GET", |
||||||
|
headers: { |
||||||
|
"EncryptedBase64": "false", |
||||||
|
"Auth": username + "<-->" + password |
||||||
|
}, |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
async function delete_todo(username, password, todo) { |
||||||
|
return fetch("/api/todo", { |
||||||
|
method: "DELETE", |
||||||
|
headers: { |
||||||
|
"EnctyptedBase64": "false", |
||||||
|
"Auth": username + "<-->" + password, |
||||||
|
body: JSON.stringify(todo), |
||||||
|
}, |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
async function get_user(username, password) { |
||||||
|
return fetch("/api/user", { |
||||||
|
method: "GET", |
||||||
|
headers: { |
||||||
|
"EncryptedBase64": "false", |
||||||
|
"Auth": username + "<-->" + password |
||||||
|
}, |
||||||
|
}); |
||||||
|
} |
Loading…
Reference in new issue