...
This commit is contained in:
@@ -98,9 +98,9 @@ namespace HushianWebApp.Service
|
||||
}
|
||||
|
||||
// AI conversation endpoints
|
||||
public async Task<List<aiResponseDto>> GetAiCurrentResponses(int companyId)
|
||||
public async Task<List<aiResponseDto>> GetAiCurrentResponses(int companyId,string aiKeyUser)
|
||||
{
|
||||
var response = await _baseController.Get($"{BaseRoute}ai/CurrentResponse/{companyId}");
|
||||
var response = await _baseController.Get($"{BaseRoute}ai/CurrentResponse/{companyId}/{aiKeyUser}");
|
||||
if (response.IsSuccessStatusCode)
|
||||
return await response.Content.ReadFromJsonAsync<List<aiResponseDto>>();
|
||||
|
||||
|
Reference in New Issue
Block a user