Exemple #1
0
 public GoogleOptionsConfiguration(
     GoogleAuthenticationService googleAuthenticationService,
     IDataProtectionProvider dataProtectionProvider,
     ILogger <GoogleOptionsConfiguration> logger)
 {
     _googleAuthenticationService = googleAuthenticationService;
     _dataProtectionProvider      = dataProtectionProvider;
     _logger = logger;
 }
 public GoogleOptionsConfiguration(
     GoogleAuthenticationService googleAuthenticationService,
     IDataProtectionProvider dataProtectionProvider,
     ILogger <GoogleOptionsConfiguration> logger,
     ShellSettings shellSettings)
 {
     _googleAuthenticationService = googleAuthenticationService;
     _dataProtectionProvider      = dataProtectionProvider;
     _logger       = logger;
     _tenantPrefix = "/" + shellSettings.RequestUrlPrefix;
 }
 public GoogleAuthenticationSettingsStep(GoogleAuthenticationService googleAuthenticationService)
 {
     _googleAuthenticationService = googleAuthenticationService;
 }