1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

internal identity for issuerurl

This commit is contained in:
Kyle Spearrin 2017-08-04 12:16:31 -04:00
parent 9ed065077a
commit 83c43bd6ee

View File

@ -133,6 +133,7 @@ namespace Bit.Core.Utilities
options.Endpoints.EnableUserInfoEndpoint = false; options.Endpoints.EnableUserInfoEndpoint = false;
options.Endpoints.EnableCheckSessionEndpoint = false; options.Endpoints.EnableCheckSessionEndpoint = false;
options.Endpoints.EnableTokenRevocationEndpoint = false; options.Endpoints.EnableTokenRevocationEndpoint = false;
options.IssuerUri = globalSettings.BaseServiceUri.InternalIdentity;
}) })
.AddInMemoryApiResources(ApiResources.GetApiResources()) .AddInMemoryApiResources(ApiResources.GetApiResources())
.AddInMemoryClients(Clients.GetClients()); .AddInMemoryClients(Clients.GetClients());