Browse Source

Fix client name.

pull/8137/head
Halil İbrahim Kalkan 5 years ago
parent
commit
07ba8667b2
  1. 1
      templates/app/aspnet-core/.gitignore
  2. 2
      templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Domain/IdentityServer/IdentityServerDataSeedContributor.cs

1
templates/app/aspnet-core/.gitignore

@ -259,3 +259,4 @@ src/MyCompanyName.MyProjectName.HttpApi.Host/Logs/*
src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/Logs/*
src/MyCompanyName.MyProjectName.DbMigrator/Logs/*
src/MyCompanyName.MyProjectName.Blazor.Server/Logs/*
src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/Logs/*

2
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Domain/IdentityServer/IdentityServerDataSeedContributor.cs

@ -209,7 +209,7 @@ namespace MyCompanyName.MyProjectName.IdentityServer
* solution. Otherwise, you can delete this client. */
await CreateClientAsync(
name: webClientId,
name: blazorServerTieredClientId,
scopes: commonScopes,
grantTypes: new[] { "hybrid" },
secret: (configurationSection["MyProjectName_BlazorServerTiered:ClientSecret"] ?? "1q2w3e*").Sha256(),

Loading…
Cancel
Save