Add tenant id property to user

This commit is contained in:
Sergio Matias Urquin
2025-08-31 18:01:13 -06:00
parent e25a982b55
commit 23a5ef9bfc
3 changed files with 3 additions and 0 deletions

View File

@@ -196,6 +196,7 @@ namespace Core.Thalos.Application.UseCases.Users
MiddleName = command.MiddleName,
LastName = command.LastName,
RoleId = command.RoleId,
TenantId = command.TenantId,
};
var result = await _thalosDALService.CreateUserAsync(request, command.SendInvitation, cancellationToken).ConfigureAwait(false);