Ejemplo n.º 1
0
        public async Task <IActionResult> Exists([FromBody] AuthenticateModel model)
        {
            var exists = await _manager.ExistsAsync(model.Email, model.Password);

            return(Ok(exists));
        }