From a3c81c4f70b27e96d40ac644d56e15b139ab5ef3 Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Mon, 29 Jun 2026 15:51:09 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20TaxFilingBrowserClient=EC=9D=98=20?= =?UTF-8?q?=EC=9D=B4=EC=A4=91=20api/prefix=20=EC=A1=B0=EB=A6=BD=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0=20(BaseUrl=EC=97=90=20?= =?UTF-8?q?=EC=9D=B4=EB=AF=B8=20=ED=8F=AC=ED=95=A8=EB=90=98=EC=96=B4=20?= =?UTF-8?q?=EC=9E=88=EC=9C=BC=EB=AF=80=EB=A1=9C=20=EC=83=81=EB=8C=80?= =?UTF-8?q?=EA=B2=BD=EB=A1=9C=EC=97=90=EC=84=9C=20=EA=B1=B7=EC=96=B4?= =?UTF-8?q?=EB=83=84)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TaxBaik.Web/Services/TaxFilingBrowserClient.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/TaxBaik.Web/Services/TaxFilingBrowserClient.cs b/TaxBaik.Web/Services/TaxFilingBrowserClient.cs index cd3afb2..9729fad 100644 --- a/TaxBaik.Web/Services/TaxFilingBrowserClient.cs +++ b/TaxBaik.Web/Services/TaxFilingBrowserClient.cs @@ -44,7 +44,7 @@ public class TaxFilingBrowserClient : ITaxFilingBrowserClient { EnsureAuthHeader(); var result = await _http.GetFromJsonAsync( - $"api/taxfiling/upcoming?daysAhead={daysAhead}", cancellationToken: ct); + $"taxfiling/upcoming?daysAhead={daysAhead}", cancellationToken: ct); return result?.Data ?? []; } catch (HttpRequestException ex) @@ -60,7 +60,7 @@ public class TaxFilingBrowserClient : ITaxFilingBrowserClient { EnsureAuthHeader(); var result = await _http.GetFromJsonAsync( - $"api/taxfiling/client/{clientId}", cancellationToken: ct); + $"taxfiling/client/{clientId}", cancellationToken: ct); return result?.Data ?? []; } catch (HttpRequestException ex) @@ -76,7 +76,7 @@ public class TaxFilingBrowserClient : ITaxFilingBrowserClient { EnsureAuthHeader(); return await _http.GetFromJsonAsync( - $"api/taxfiling/{id}", cancellationToken: ct); + $"taxfiling/{id}", cancellationToken: ct); } catch (HttpRequestException ex) { @@ -90,7 +90,7 @@ public class TaxFilingBrowserClient : ITaxFilingBrowserClient try { EnsureAuthHeader(); - var response = await _http.PostAsJsonAsync("api/taxfiling", filing, cancellationToken: ct); + var response = await _http.PostAsJsonAsync("taxfiling", filing, cancellationToken: ct); if (!response.IsSuccessStatusCode) return null; @@ -111,7 +111,7 @@ public class TaxFilingBrowserClient : ITaxFilingBrowserClient try { EnsureAuthHeader(); - var response = await _http.PutAsJsonAsync($"api/taxfiling/{id}", filing, cancellationToken: ct); + var response = await _http.PutAsJsonAsync($"taxfiling/{id}", filing, cancellationToken: ct); if (!response.IsSuccessStatusCode) return null; @@ -132,7 +132,7 @@ public class TaxFilingBrowserClient : ITaxFilingBrowserClient try { EnsureAuthHeader(); - var response = await _http.DeleteAsync($"api/taxfiling/{id}", cancellationToken: ct); + var response = await _http.DeleteAsync($"taxfiling/{id}", cancellationToken: ct); return response.IsSuccessStatusCode; } catch (HttpRequestException ex)