Uncomment the cache settings

This commit is contained in:
Oscar Morales
2025-06-10 23:12:43 -06:00
parent 8207048c25
commit 6cb0aea1a0
9 changed files with 95 additions and 88 deletions

View File

@@ -103,7 +103,7 @@ namespace LSA.Core.Thalos.API.Controllers
//[Permission("RoleManagement.Write")]
public async Task<IActionResult> UpdateRoleAsync([FromRoute] string id, [FromBody] RoleAdapter entity, CancellationToken cancellationToken)
{
if (id != entity._Id?.ToString())
if (id != entity.Id?.ToString())
{
return BadRequest("Role ID mismatch");
}