1 Commits

Author SHA1 Message Date
827e5ec270 Merge pull request 'Add tenant services' (#9) from feature/add-tenant-services into development
Reviewed-on: #9
Reviewed-by: efrain_marin <efrain.marin@agilewebs.com>
Reviewed-by: OscarMmtz <oscar.morales@agilewebs.com>
2025-08-05 18:53:57 +00:00

View File

@@ -26,7 +26,7 @@ namespace LSA.Core.Thalos.API.Controllers
public class UserController(IUserProvider service) : ControllerBase
{
/// <summary>
/// Gets all users.
/// mongo identifier all the users.
/// </summary>
/// <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
/// <returns>The <see cref="IEnumerable{UserAdapter}"/> found entity.</returns>
@@ -41,7 +41,7 @@ namespace LSA.Core.Thalos.API.Controllers
}
/// <summary>
/// Gets the user by mongo identifier.
/// mongo identifier the user by identifier.
/// </summary>
/// <param name="_id">The user Mongo identifier.</param>
/// <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
@@ -58,7 +58,7 @@ namespace LSA.Core.Thalos.API.Controllers
}
/// <summary>
/// Gets the user by email.
/// mongo identifier the user by email.
/// </summary>
/// <param name="email">The user's email.</param>
/// <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
@@ -106,7 +106,7 @@ namespace LSA.Core.Thalos.API.Controllers
}
/// <summary>
/// Updates a full user by mongo identifier.
/// Updates a full user by identifier.
/// </summary>
/// <param name="_id">The user Mongo identifier.</param>
/// <param name="entity">The user to update.</param>
@@ -175,7 +175,7 @@ namespace LSA.Core.Thalos.API.Controllers
}
/// <summary>
/// Gets a token for the user, including roles, permissions, and modules.
/// mongo identifier a token for the user, including roles, permissions, and modules.
/// </summary>
/// <param name="email">The user's email.</param>
/// <param name="cancellationToken">A token to cancel the asynchronous operation.</param>
@@ -191,7 +191,7 @@ namespace LSA.Core.Thalos.API.Controllers
}
/// <summary>
/// Deletes a user by mongo identifier.
/// Deletes a user by identifier.
/// </summary>
/// <param name="_id">The user Mongo identifier.</param>
/// <param name="cancellationToken">A token to cancel the asynchronous operation.</param>