#7759269 Проверка ролей на зацикливание включенных ролей

This commit is contained in:
ai.astrakhantsev 2022-11-29 11:22:34 +05:00
parent c9c60bce2b
commit a12906d558

View File

@ -213,21 +213,6 @@ namespace AsbCloudInfrastructure.Repository
DropCacheRelationUserRoleUserRole();
}
//private IEnumerable<int> GetNestedRoleIds(UserRoleDto dto)
//{
// var result = new List<int>();
// if (dto.Roles is not null)
// {
// foreach (var role in dto.Roles)
// {
// result.Add(role.Id);
// if (role.Roles is not null)
// GetNestedRoleIds(role);
// }
// }
// return result;
//}
private async Task UpdatePermissionsAsync(UserRoleDto dto, CancellationToken token)
{
if (dto?.Permissions is null)