1

I using Asp Net Boilerplate to create API for website. And I have problem when publish it to server. Sometimes the user account is set isEmailConfirmed = true without confirmation email or setting this property? I don't know the reason why. Could you help me solve this problem?

Tae
  • 11
  • 2

2 Answers2

2

It's set to true in UserAppService.Create method:

user.IsEmailConfirmed = true;

You can change that.

aaron
  • 39,695
  • 6
  • 46
  • 102
0

You may want to look into AccountAppService.Register().

It is set to true by default as well.

ryan.c
  • 244
  • 1
  • 6