public async Task <ActionResult <bool> > HasPassword()
 {
     return(ResponseGet(await _userAppService.HasPassword(_systemUser.UserId)));
 }
示例#2
0
 public async Task <ActionResult <DefaultResponse <bool> > > HasPassword() => Response(await _userAppService.HasPassword(GetUserId().Value));