Einkaufsliste erstellen + ausgabe mit user acconts

This commit is contained in:
Lukas Nowy
2018-10-27 20:03:07 +02:00
parent 8e7d96310f
commit bd4053054a
3 changed files with 70 additions and 3 deletions

View File

@ -0,0 +1,12 @@
$(document).ready(function() {
//DELETE THIS
$.ajax({
type: "POST",
url: "/shoppinglist",
data: {
name: "Name Test",
description: "Description Test"
}
});
// ---
});