forked from OrchardCMS/OrchardCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: name changes, docs, indent, new line
style: formatting comment and code style: added last extra line style: change var name to usrLocator docs: reviewd comment
- Loading branch information
Showing
4 changed files
with
43 additions
and
46 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
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
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
9 changes: 4 additions & 5 deletions
9
src/OrchardCore/OrchardCore.Users.Abstractions/Services/IExternalLoginUserToRelateFinder.cs
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,14 +1,13 @@ | ||
|
||
using System.Threading.Tasks; | ||
using Microsoft.AspNetCore.Identity; | ||
|
||
namespace OrchardCore.Users.Abstractions; | ||
|
||
public interface IExternalLoginUserToRelateFinder | ||
{ | ||
bool CanManageThis(string extLoginKind); | ||
bool CanHandle(ExternalLoginInfo info); | ||
|
||
Task<IUser> FindUserToRelateAsync(ExternalLoginInfo info); | ||
Task<IUser> GetUserAsync(ExternalLoginInfo info); | ||
|
||
string GetValueThatLinkAccount(ExternalLoginInfo info); | ||
} | ||
string GetValueThatLinkAccount(ExternalLoginInfo info); | ||
} |