From 9431daad2ff1017fa514968fa94636cfbc76095a Mon Sep 17 00:00:00 2001 From: Maxim Rychkov Date: Sun, 15 Mar 2026 19:10:05 +0500 Subject: [PATCH 1/5] fix: remove /api/auth from httpClient path because AuthServiceUrl should contain it --- Application/HttpClients/AccountHttpClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Application/HttpClients/AccountHttpClient.cs b/Application/HttpClients/AccountHttpClient.cs index 062bab8..331fd0e 100644 --- a/Application/HttpClients/AccountHttpClient.cs +++ b/Application/HttpClients/AccountHttpClient.cs @@ -19,7 +19,7 @@ public AccountHttpClient(IOptions urls) public async Task SendRequestToRegisterNewAccountAsync(long accountId, string corporateEmail, string token) { - var request = new HttpRequestMessage(HttpMethod.Post, $"{_urls.AuthServiceUrl}/api/auth/register") + var request = new HttpRequestMessage(HttpMethod.Post, $"{_urls.AuthServiceUrl}/register") { Content = JsonContent.Create(new { @@ -65,7 +65,7 @@ await _client.PostAsJsonAsync } public async Task SendRequestToDeleteAccountAsync(string corporateEmail, string token) { - var request = new HttpRequestMessage(HttpMethod.Post, $"{_urls.AuthServiceUrl}/api/auth/delete-user") + var request = new HttpRequestMessage(HttpMethod.Post, $"{_urls.AuthServiceUrl}/delete-user") { Content = JsonContent.Create(new { From d094ed9714e32f0073feee30e235bc1c565a74e9 Mon Sep 17 00:00:00 2001 From: Maxim Rychkov Date: Sun, 15 Mar 2026 19:12:53 +0500 Subject: [PATCH 2/5] test: deploy from feature --- .github/workflows/deploy-to-prod-from-default.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy-to-prod-from-default.yml b/.github/workflows/deploy-to-prod-from-default.yml index 17aa872..2178607 100644 --- a/.github/workflows/deploy-to-prod-from-default.yml +++ b/.github/workflows/deploy-to-prod-from-default.yml @@ -4,6 +4,7 @@ on: push: branches: - master + - feature/fix_auth_client jobs: docker-build-and-push: From 292d5ff02e474ebbe91af907019100795608fb73 Mon Sep 17 00:00:00 2001 From: Maxim Rychkov Date: Mon, 16 Mar 2026 08:44:37 +0500 Subject: [PATCH 3/5] Revert "test: deploy from feature" This reverts commit d094ed9714e32f0073feee30e235bc1c565a74e9. --- .github/workflows/deploy-to-prod-from-default.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/deploy-to-prod-from-default.yml b/.github/workflows/deploy-to-prod-from-default.yml index 2178607..17aa872 100644 --- a/.github/workflows/deploy-to-prod-from-default.yml +++ b/.github/workflows/deploy-to-prod-from-default.yml @@ -4,7 +4,6 @@ on: push: branches: - master - - feature/fix_auth_client jobs: docker-build-and-push: From e5b136da722b5aa411a65c62a253d3e2f841e320 Mon Sep 17 00:00:00 2001 From: Maxim Rychkov Date: Mon, 16 Mar 2026 08:45:25 +0500 Subject: [PATCH 4/5] test: use local-env from feature branch in e2e tests --- .github/workflows/e2e-tests-on-pull-request.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/e2e-tests-on-pull-request.yml b/.github/workflows/e2e-tests-on-pull-request.yml index 827cfac..c282d9a 100644 --- a/.github/workflows/e2e-tests-on-pull-request.yml +++ b/.github/workflows/e2e-tests-on-pull-request.yml @@ -19,6 +19,7 @@ jobs: uses: actions/checkout@v4 with: repository: TourmalineCore/inner-circle-local-env + ref: feature/fix_auth_service_url - name: Deploy Local Env to Kind k8s uses: devcontainers/ci@v0.3 From f3736d395aeb4bf03d17196f5f866ca292843a1f Mon Sep 17 00:00:00 2001 From: Maxim Rychkov Date: Mon, 16 Mar 2026 08:59:12 +0500 Subject: [PATCH 5/5] Revert "test: use local-env from feature branch in e2e tests" This reverts commit e5b136da722b5aa411a65c62a253d3e2f841e320. --- .github/workflows/e2e-tests-on-pull-request.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/e2e-tests-on-pull-request.yml b/.github/workflows/e2e-tests-on-pull-request.yml index c282d9a..827cfac 100644 --- a/.github/workflows/e2e-tests-on-pull-request.yml +++ b/.github/workflows/e2e-tests-on-pull-request.yml @@ -19,7 +19,6 @@ jobs: uses: actions/checkout@v4 with: repository: TourmalineCore/inner-circle-local-env - ref: feature/fix_auth_service_url - name: Deploy Local Env to Kind k8s uses: devcontainers/ci@v0.3