-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added LoginAsync for UserLoginInfo (external login). Resolved #87.
- Loading branch information
Showing
4 changed files
with
982 additions
and
907 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
namespace Abp.Authorization.Users | ||
{ | ||
public enum AbpLoginResultType | ||
{ | ||
Success = 1, | ||
|
||
InvalidUserNameOrEmailAddress, | ||
InvalidPassword, | ||
UserIsNotActive, | ||
|
||
InvalidTenancyName, | ||
TenantIsNotActive, | ||
UserEmailIsNotConfirmed | ||
} | ||
namespace Abp.Authorization.Users | ||
{ | ||
public enum AbpLoginResultType | ||
{ | ||
Success = 1, | ||
|
||
InvalidUserNameOrEmailAddress, | ||
|
||
InvalidPassword, | ||
|
||
UserIsNotActive, | ||
|
||
InvalidTenancyName, | ||
|
||
TenantIsNotActive, | ||
|
||
UserEmailIsNotConfirmed, | ||
|
||
UnknownExternalLogin | ||
} | ||
} |
Oops, something went wrong.