This commit is contained in:
mmrbnjd
2025-08-03 23:41:54 +03:30
parent 65eeb4694e
commit ba0c513830
4 changed files with 199 additions and 82 deletions

View File

@@ -73,6 +73,11 @@ namespace HushianWebApp.Service
var response = await _baseController.Put($"{BaseRoute}ChatIsFinish/{ChatID}");
return response.IsSuccessStatusCode;
}
public async Task<bool> Attachedto(int toExperID, int ChatID)
{
var response = await _baseController.Put($"{BaseRoute}Attached-to/{toExperID}/{ChatID}");
return response.IsSuccessStatusCode;
}
public async Task<bool> ChatIsFinishFromUser(int ChatID)
{
var response = await _baseController.Put($"{BaseRoute}ChatIsFinishFromUser/{ChatID}");