Skip to content

Commit

Permalink
change handler class to public
Browse files Browse the repository at this point in the history
  • Loading branch information
kefengwei committed Jan 28, 2021
1 parent 1ed8ee8 commit 6d3c24b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>0.1.0</Version>
<Version>0.1.1</Version>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<AbpProjectType>module</AbpProjectType>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Trinity.OAuth.Connect.QQ/QQHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

namespace Microsoft.AspNetCore.Authentication.QQ
{
internal class QQHandler : OAuthHandler<QQOptions>
public class QQHandler : OAuthHandler<QQOptions>
{
public QQHandler(IOptionsMonitor<QQOptions> options, ILoggerFactory logger, UrlEncoder encoder, ISystemClock clock)
: base(options, logger, encoder, clock)
Expand Down
2 changes: 1 addition & 1 deletion src/Trinity.OAuth.Connect.Wexin/WeChatHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

namespace Trinity.OAuth.Connect.Wexin
{
internal class WeChatHandler : OAuthHandler<WeChatOptions>
public class WeChatHandler : OAuthHandler<WeChatOptions>
{
private readonly ISecureDataFormat<AuthenticationProperties> _secureDataFormat;

Expand Down

0 comments on commit 6d3c24b

Please sign in to comment.