Browse Source

auth domain

master
gsd 1 year ago
parent
commit
67ae4ddbc4
  1. 7
      src/components/Others/AuthWindow.vue

7
src/components/Others/AuthWindow.vue

@ -39,8 +39,13 @@ export default {
}),
methods: {
moveTo(action, service) {
let subdomain = "tf2";
if (location.host.indexOf("pblr-nyk.pro") !== -1) {
subdomain = location.host.split(".")[0]
}
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');
},

Loading…
Cancel
Save