|
@ -39,8 +39,13 @@ export default { |
|
|
}), |
|
|
}), |
|
|
methods: { |
|
|
methods: { |
|
|
moveTo(action, service) { |
|
|
moveTo(action, service) { |
|
|
|
|
|
let subdomain = "tf2"; |
|
|
|
|
|
if (location.host.indexOf("pblr-nyk.pro") !== -1) { |
|
|
|
|
|
subdomain = location.host.split(".")[0] |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
if (service === 'steam') { |
|
|
if (service === 'steam') { |
|
|
return window.open(`/api/auth/${action}`, '_self'); |
|
|
return window.open(`/api/auth/${action}?subdomain=${subdomain}`, '_self'); |
|
|
} |
|
|
} |
|
|
return window.open(`/api/auth/${service}/${action}`, '_self'); |
|
|
return window.open(`/api/auth/${service}/${action}`, '_self'); |
|
|
}, |
|
|
}, |
|
|