Compare commits

..

No commits in common. "d76f600e03abdb090b0036946664de873df777f9" and "ff08efd97834a4845e85c0477c0710aac81f920a" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ namespace IRaCIS.Core.Application.Service
[HttpPost("{id:guid}")] [HttpPost("{id:guid}")]
public async Task<IResponseOutput> DeleteCustomTag(Guid id) public async Task<IResponseOutput> DeleteCustomTag(Guid id)
{ {
var success = await _readingTaskQuestionMarkRepository.DeleteFromQueryAsync(t => t.Id == id||t.MarkId==id, true); var success = await _readingTaskQuestionMarkRepository.DeleteFromQueryAsync(t => t.Id == id, true);
return ResponseOutput.Ok(); return ResponseOutput.Ok();
} }