More JWT work

This commit is contained in:
Nanne Baars
2018-05-21 12:41:37 +02:00
parent 7a0820bf89
commit 9d7886d572
13 changed files with 355 additions and 39 deletions

View File

@ -0,0 +1,10 @@
function follow(user) {
$.ajax({
type: 'POST',
url: 'JWT/final/follow/' + user
}).then(function (result) {
$("#toast").setTextContent(result);
})
}
}