Skip to content

Commit 60c05ca

Browse files
committed
renaming
1 parent 95bc162 commit 60c05ca

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

StsServerIdentity/Data/Migrations/20230818171502_Users.Designer.cs

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

StsServerIdentity/Data/Migrations/ApplicationDbContextModelSnapshot.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
183183
b.ToTable("AspNetUserTokens", (string)null);
184184
});
185185

186-
modelBuilder.Entity("StsServerIdentity.Models.ApplicationUser", b =>
186+
modelBuilder.Entity("IdentityProvider.Models.ApplicationUser", b =>
187187
{
188188
b.Property<string>("Id")
189189
.HasColumnType("TEXT");
@@ -264,7 +264,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
264264

265265
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
266266
{
267-
b.HasOne("StsServerIdentity.Models.ApplicationUser", null)
267+
b.HasOne("IdentityProvider.Models.ApplicationUser", null)
268268
.WithMany()
269269
.HasForeignKey("UserId")
270270
.OnDelete(DeleteBehavior.Cascade)
@@ -273,7 +273,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
273273

274274
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
275275
{
276-
b.HasOne("StsServerIdentity.Models.ApplicationUser", null)
276+
b.HasOne("IdentityProvider.Models.ApplicationUser", null)
277277
.WithMany()
278278
.HasForeignKey("UserId")
279279
.OnDelete(DeleteBehavior.Cascade)
@@ -288,7 +288,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
288288
.OnDelete(DeleteBehavior.Cascade)
289289
.IsRequired();
290290

291-
b.HasOne("StsServerIdentity.Models.ApplicationUser", null)
291+
b.HasOne("IdentityProvider.Models.ApplicationUser", null)
292292
.WithMany()
293293
.HasForeignKey("UserId")
294294
.OnDelete(DeleteBehavior.Cascade)
@@ -297,7 +297,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
297297

298298
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
299299
{
300-
b.HasOne("StsServerIdentity.Models.ApplicationUser", null)
300+
b.HasOne("IdentityProvider.Models.ApplicationUser", null)
301301
.WithMany()
302302
.HasForeignKey("UserId")
303303
.OnDelete(DeleteBehavior.Cascade)

StsServerIdentity/Models/AuthConfigurations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public class AuthConfigurations
44
{
5-
public string StsServerIdentityUrl { get; set; }
5+
public string IdentityProviderUrl { get; set; }
66
public string WebHybridClientUrl { get; set; }
77
public string WebCodeFlowPkceClientUrl { get; set; }
88
public string AspNetCoreRequireMfaOidcUrl { get; set; }

StsServerIdentity/Pages/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@page
2-
@model StsServerIdentity.Pages.Home.Index
2+
@model IdentityProvider.Pages.Home.Index
33

44
IdentityProviderme-page">
55
<IdentityProvider src="~/duende-logo.svg" class="logo">
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@using StsServerIdentity.Pages
1+
@using IdentityProvider.Pages
22
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

StsServerIdentity/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
builder.Host.UseSerilog((ctx, lc) => lc
1616
.WriteTo.Console(outputTemplate: "[{Timestamp:HH:mm:ss} {Level}] {SourceContext}{NewLine}{Message:lj}{NewLine}{Exception}{NewLine}")
17-
.WriteTo.File("../_logs-StsServerIdentity.txt")
17+
.WriteTo.File("../_logs-IdentityProvider.txt")
1818
.Enrich.FromLogContext()
1919
.ReadFrom.Configuration(ctx.Configuration));
2020

StsServerIdentity/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"profiles": {
3-
"StsServerIdentity": {
3+
"IdentityProvider": {
44
"commandName": "Project",
55
"launchBrowser": true,
66
"environmentVariables": {

StsServerIdentity/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"MDSAccessKey": null
1919
},
2020
"AuthConfigurations": {
21-
"StsServerIdentityUrl": "https://localhost:44352",
21+
"IdentityProviderUrl": "https://localhost:44352",
2222
"WebHybridClientUrl": "https://localhost:44329",
2323
"WebCodeFlowPkceClientUrl": "https://localhost:44330",
2424
"AspNetCoreRequireMfaOidcUrl": "https://localhost:44389"

0 commit comments

Comments
 (0)