Most működik az üzenetküldés Backenden
This commit is contained in:
@@ -154,10 +154,10 @@ namespace WorkFlowCheck.API.Controllers
|
||||
}
|
||||
try
|
||||
{
|
||||
var userDTO_Response = await _userService.Authenticate(userSimpleDTO.UserName, userSimpleDTO.Password);
|
||||
var userDTO_Response = await _userService.AuthenticateNFC(userSimpleDTO.UserName);
|
||||
if (userDTO_Response != null)
|
||||
{
|
||||
if (string.IsNullOrEmpty(userDTO_Response.UserName) == false && userDTO_Response.UserName == userSimpleDTO.UserName)
|
||||
if (string.IsNullOrEmpty(userDTO_Response.UserName) == false && userDTO_Response.NFCActive)
|
||||
{
|
||||
retVal.IsSuccess = true;
|
||||
retVal.Data = userDTO_Response;
|
||||
|
||||
Reference in New Issue
Block a user