Private GIT

Skip to content
Snippets Groups Projects
Commit 7e2146a2 authored by vx3r's avatar vx3r
Browse files

change auth header name, make auth basic work

parent 6e08b281
Branches
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ func main() {
// cors middleware
config := cors.DefaultConfig()
config.AllowAllOrigins = true
config.AddAllowHeaders("Authorization")
config.AddAllowHeaders("Authorization", util.AuthTokenHeaderName)
app.Use(cors.New(config))
// protection middleware
......
......@@ -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) {
......
......@@ -11,7 +11,7 @@ import (
)
var (
AuthTokenHeaderName = "Authorization"
AuthTokenHeaderName = "x-wg-gen-web-auth"
// RegexpEmail check valid email
RegexpEmail = regexp.MustCompile("^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$")
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment