Uses shared vue resource interceptor

This commit is contained in:
Phil Hughes 2017-02-09 11:03:36 +00:00
parent f9c58d9388
commit 88fb39c229
1 changed files with 1 additions and 7 deletions

View File

@ -4,6 +4,7 @@
const Vue = window.Vue = require('vue');
window.Vue.use(require('vue-resource'));
require('../../vue_shared/vue_resource_interceptor');
(() => {
window.gl = window.gl || {};
@ -12,13 +13,6 @@ window.Vue.use(require('vue-resource'));
constructor(root) {
this.noteResource = Vue.resource(`${root}/notes{/noteId}/resolve`);
this.discussionResource = Vue.resource(`${root}/merge_requests{/mergeRequestId}/discussions{/discussionId}/resolve`);
Vue.http.interceptors.push((request, next) => {
if ($.rails) {
request.headers['X-CSRF-Token'] = $.rails.csrfToken();
}
next();
});
}
resolve(noteId) {