Skip to content

Commit

Permalink
Make DisableHttpsConfiguration internal
Browse files Browse the repository at this point in the history
  • Loading branch information
dstenroejl committed Aug 5, 2024
1 parent ed77319 commit 277eee1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static class AuthenticationExtensions
/// Disables HTTPS requirement for OpenId configuration endpoints.
/// This property is intended for testing purposes only and we use InternalsVisibleTo in the project file to control who can access it.
/// </summary>
public static bool DisableHttpsConfiguration { get; set; } // TODO: Should be internal again, this was just to be able to quickly test in Wholesale
internal static bool DisableHttpsConfiguration { get; set; }

public static IServiceCollection AddUserAuthenticationForIsolatedWorker<TUser, TUserProvider>(this IServiceCollection services)
where TUser : class
Expand Down

0 comments on commit 277eee1

Please sign in to comment.