Files
WebGoat/webgoat-lessons/jwt/src/main/resources/js/jwt-final.js
2018-05-23 14:28:19 +02:00

10 lines
177 B
JavaScript

function follow(user) {
$.ajax({
type: 'POST',
url: 'JWT/final/follow/' + user
}).then(function (result) {
$("#toast").append(result);
})
}