Added auth check on all routes

This commit is contained in:
Florian Sylvain
2022-10-20 13:07:06 +02:00
parent e00d5dd25b
commit 0dd12627cf
3 changed files with 26 additions and 4 deletions
+3 -1
View File
@@ -16,6 +16,7 @@ onMounted(async function() {
function addArticle() {
fetch("http://localhost:8080/add-article", {
method: "POST",
headers: {"Authorization" : `Basic ${btoa(`${username.value}:${password.value}`)}`},
body: JSON.stringify({
id_name: `${Math.random() * 100}`,
content: {},
@@ -27,7 +28,7 @@ function addArticle() {
}
function logArticles() {
fetch("http://localhost:8080/get-all-articles")
fetch("http://localhost:8080/get-all-articles", {headers: {"Authorization" : `Basic ${btoa(`${username.value}:${password.value}`)}`}})
.then(response => response.json())
.then(result => console.log(result))
}
@@ -35,6 +36,7 @@ function logArticles() {
function deleteArticle(articleID: String) {
fetch("http://localhost:8080/delete-article", {
method: "DELETE",
headers: {"Authorization" : `Basic ${btoa(`${username.value}:${password.value}`)}`},
body: JSON.stringify({
id_name: articleID
})