Skip to content

Commit

Permalink
Added LoginAsync for UserLoginInfo (external login). Resolved #87.
Browse files Browse the repository at this point in the history
  • Loading branch information
hikalkan committed Jul 18, 2015
1 parent 0e960d5 commit 2825bf2
Show file tree
Hide file tree
Showing 4 changed files with 982 additions and 907 deletions.
34 changes: 20 additions & 14 deletions src/Abp.Zero/Authorization/Users/AbpLoginResultType.cs
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
}
}
Loading

0 comments on commit 2825bf2

Please sign in to comment.