Ejemplo n.º 1
0
        public async Task <IActionResult> Login([FromBody] LoginMetaModel model)
        {
            // return token
            var result = await _authencationService.SignInAsync(model);

            if (!result.Succeeded)
            {
                return(BadRequest());
            }


            return(Ok(await _tokenService.BuildTokenAsync(model)));
        }
Ejemplo n.º 2
0
 public async Task <UserToken> BuildTokenAsync(LoginMetaModel model)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 public async Task <SignInResult> SignInAsync(LoginMetaModel model)
 {
     return(await _signInManager.PasswordSignInAsync(model.Email, model.Password, false, false));
 }