1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-11-30 08:06:52 +02:00
woodpecker/static/scripts/csrf.js
2015-09-29 18:21:17 -07:00

12 lines
308 B
JavaScript

$(function () {
// fetch the CSRF token from the meta tag
var token = $("meta[name='_csrf']").attr("content");
// ensure every Ajax request has the CSRF token
// included in the request's header.
$(document).ajaxSend(function(e, xhr, options) {
xhr.setRequestHeader("X-CSRF-TOKEN", token);
});
});