Skip to content

Commit

Permalink
changed a few access modifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
VeritasSoftware committed Nov 10, 2018
1 parent 858130b commit c12282d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions AspNetCore.Security.Jwt/MvcBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public static class MvcBuilderExtensions
{
const string ASSEMBLY_NAME = "AspNetCore.Security.Jwt";

private static bool IsDefaultSecurityAdded { get; set; }
private static bool IsUserModelSecurityAdded { get; set; }
private static bool IsFacebookSecurityAdded { get; set; }
internal static bool IsDefaultSecurityAdded { get; set; }
internal static bool IsUserModelSecurityAdded { get; set; }
internal static bool IsFacebookSecurityAdded { get; set; }

/// <summary>
/// Add Security extension. Adds Security assembly for default Authentication.
Expand Down
2 changes: 1 addition & 1 deletion AspNetCore.Security.Jwt/SecurityExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public static IServiceCollection AddFacebookSecurity(this IServiceCollection ser
return services;
}

private static IServiceCollection AddJwtBearerScheme(this IServiceCollection services, BaseSecuritySettings securitySettings)
internal static IServiceCollection AddJwtBearerScheme(this IServiceCollection services, BaseSecuritySettings securitySettings)
{
services.AddAuthentication(options => {
options.DefaultAuthenticateScheme = "JwtBearer";
Expand Down

0 comments on commit c12282d

Please sign in to comment.