Bit.Api.Controllers.AccountsController.PostPasswordHint C# (CSharp) Method

PostPasswordHint() private method

private PostPasswordHint ( [ model ) : System.Threading.Tasks.Task
model [
return System.Threading.Tasks.Task
        public async Task PostPasswordHint([FromBody]PasswordHintRequestModel model)
        {
            await _userService.SendMasterPasswordHintAsync(model.Email);
        }