예제 #1
0
 public AuthorizeController(AppConfig config, UserTenantContainer userTenantContainer, UserSettingsContainer userSettingsContainer, IJwtHelpers jwtHelper, IOpenIdProviderConfiguration openIdProviderConfiguration, IAuthenticationContext authenticationContext)
 {
     this.config = config;
     this.userTenantContainer         = userTenantContainer;
     this.userSettingsContainer       = userSettingsContainer;
     this.jwtHelper                   = jwtHelper;
     this.openIdProviderConfiguration = openIdProviderConfiguration;
     this.authenticationContext       = authenticationContext;
 }
예제 #2
0
 public JwtHelpers(
     UserTenantContainer userTenantContainer,
     UserSettingsContainer userSettingsContainer,
     AppConfig config,
     IHttpContextAccessor httpContextAccessor,
     IOpenIdProviderConfiguration openIdProviderConfiguration,
     IRsaHelpers rsaHelpers,
     ILogger <JwtHelpers> logger)
 {
     this.userTenantContainer   = userTenantContainer;
     this.userSettingsContainer = userSettingsContainer;
     this.config = config;
     this.httpContextAccessor         = httpContextAccessor;
     this.openIdProviderConfiguration = openIdProviderConfiguration;
     this.rsaHelpers = rsaHelpers;
     this.logger     = logger;
 }
예제 #3
0
 public ConfigurationController(AppConfig config, IOpenIdProviderConfiguration openIdProviderConfiguration, IRsaHelpers rsaHelpers)
 {
     this.config = config;
     this.openIdProviderConfiguration = openIdProviderConfiguration;
     this.rsaHelpers = rsaHelpers;
 }