Skip to content

Commit c5208b5

Browse files
committed
TD-4086 removing unneeded comment
1 parent 028e860 commit c5208b5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

DigitalLearningSolutions.Web/Helpers/ExternalApis/TableauConnectionHelper.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,12 @@ public async Task<string> AuthenticateUserAsync(string jwtToken)
8282

8383
var requestContent = new StringContent($"{{ \"token\": \"{jwtToken}\" }}", Encoding.UTF8, "application/json");
8484

85-
HttpResponseMessage response = await client.PostAsync("/api/3.8/auth/signin", requestContent); // Adjust API version as needed
85+
HttpResponseMessage response = await client.PostAsync("/api/3.8/auth/signin", requestContent);
8686

8787
if (response.IsSuccessStatusCode)
8888
{
8989
string responseBody = await response.Content.ReadAsStringAsync();
90-
// Process the response body if needed
91-
return dashboardUrl; // Return the response for further processing
90+
return dashboardUrl;
9291
}
9392
else
9493
{

0 commit comments

Comments
 (0)