Skip to content
Snippets Groups Projects
Commit 88fb39c2 authored by Phil Hughes's avatar Phil Hughes
Browse files

Uses shared vue resource interceptor

parent f9c58d93
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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 || {};
Loading
Loading
@@ -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) {
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment