0
0
mirror of https://github.com/vx3r/wg-gen-web.git synced 2025-09-11 12:24:27 +00:00

change auth header name, make auth basic work

This commit is contained in:
vx3r
2020-05-18 15:25:05 +09:00
parent 6e08b2818d
commit 7e2146a229
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ import TokenService from "./token.service";
const ApiService = {
setHeader() {
Vue.axios.defaults.headers.common.Authorization = `${TokenService.getToken()}`;
Vue.axios.defaults.headers['x-wg-gen-web-auth'] = `${TokenService.getToken()}`;
},
get(resource) {