From c6425b512009f7901ca3625b145e9a6dcb37da38 Mon Sep 17 00:00:00 2001 From: Rakov Roman Date: Wed, 26 Oct 2022 14:26:38 +0300 Subject: [PATCH] fix(auth): testing auth api fix --- src/config/routes.tsx | 10 ++++++---- src/features/AuthServiceApp/config/routes.tsx | 3 ++- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/config/routes.tsx b/src/config/routes.tsx index cf1f9e99..dbe9c406 100644 --- a/src/config/routes.tsx +++ b/src/config/routes.tsx @@ -8,12 +8,14 @@ export const APIS = { auth: 'https://auth.insports.tv', }, production: { - api: 'https://api.prod.insports.tv', - auth: 'https://auth.prod.insports.tv', + api: 'https://www.api.auth.test.insports.tv', + auth: 'https://www.auth.test.insports.tv', + // api: 'https://api.insports.tv', + // auth: 'https://auth.insports.tv', }, staging: { - api: 'https://api.qwe.insports.tv', - auth: 'https://auth.qwe.insports.tv', + api: 'https://www.api.test.insports.tv', + auth: 'https://www.auth.test.insports.tv', }, } diff --git a/src/features/AuthServiceApp/config/routes.tsx b/src/features/AuthServiceApp/config/routes.tsx index 9aa8df43..4000b654 100644 --- a/src/features/AuthServiceApp/config/routes.tsx +++ b/src/features/AuthServiceApp/config/routes.tsx @@ -2,7 +2,8 @@ import { ENV } from 'config/env' const APIS = { preproduction: 'https://auth.insports.tv', - production: 'https://auth.insports.tv', + production: 'https://www.auth.test.insports.tv', + // production: 'https://auth.insports.tv', staging: 'https://auth.test.insports.tv', }