mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
use custom DiscoveryResponseGenerator on cloud too (#921)
This commit is contained in:
parent
a997440e3d
commit
55e0f82139
@ -46,10 +46,7 @@ namespace Bit.Sso.Utilities
|
|||||||
public static IIdentityServerBuilder AddSsoIdentityServerServices(this IServiceCollection services,
|
public static IIdentityServerBuilder AddSsoIdentityServerServices(this IServiceCollection services,
|
||||||
IWebHostEnvironment env, GlobalSettings globalSettings)
|
IWebHostEnvironment env, GlobalSettings globalSettings)
|
||||||
{
|
{
|
||||||
if (globalSettings.SelfHosted)
|
services.AddTransient<IDiscoveryResponseGenerator, DiscoveryResponseGenerator>();
|
||||||
{
|
|
||||||
services.AddTransient<IDiscoveryResponseGenerator, DiscoveryResponseGenerator>();
|
|
||||||
}
|
|
||||||
|
|
||||||
var issuerUri = new Uri(globalSettings.BaseServiceUri.InternalSso);
|
var issuerUri = new Uri(globalSettings.BaseServiceUri.InternalSso);
|
||||||
var identityServerBuilder = services
|
var identityServerBuilder = services
|
||||||
|
@ -16,10 +16,7 @@ namespace Bit.Identity.Utilities
|
|||||||
public static IIdentityServerBuilder AddCustomIdentityServerServices(this IServiceCollection services,
|
public static IIdentityServerBuilder AddCustomIdentityServerServices(this IServiceCollection services,
|
||||||
IWebHostEnvironment env, GlobalSettings globalSettings)
|
IWebHostEnvironment env, GlobalSettings globalSettings)
|
||||||
{
|
{
|
||||||
if (globalSettings.SelfHosted)
|
services.AddTransient<IDiscoveryResponseGenerator, DiscoveryResponseGenerator>();
|
||||||
{
|
|
||||||
services.AddTransient<IDiscoveryResponseGenerator, DiscoveryResponseGenerator>();
|
|
||||||
}
|
|
||||||
|
|
||||||
services.AddSingleton<StaticClientStore>();
|
services.AddSingleton<StaticClientStore>();
|
||||||
services.AddTransient<IAuthorizationCodeStore, AuthorizationCodeStore>();
|
services.AddTransient<IAuthorizationCodeStore, AuthorizationCodeStore>();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user