From 67ae4ddbc490f99195e80215c6f63d9109d185f8 Mon Sep 17 00:00:00 2001 From: gsd Date: Fri, 20 Oct 2023 13:54:30 +0300 Subject: [PATCH] auth domain --- src/components/Others/AuthWindow.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/Others/AuthWindow.vue b/src/components/Others/AuthWindow.vue index dc8c3c2..6c838de 100644 --- a/src/components/Others/AuthWindow.vue +++ b/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'); },