BB.UI.Web.MVC.Controllers.ManageController.HasPassword C# (CSharp) Method

HasPassword() private method

private HasPassword ( ) : bool
return bool
        private bool HasPassword()
        {
            var user = UserManager.FindById(User.Identity.GetUserId());
            return user?.PasswordHash != null;
        }