mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-24 01:18:22 +00:00
Fixed a typo in comments added to BFF templates
This commit is contained in:
parent
f67516c1f8
commit
c33705a1e2
3 changed files with 3 additions and 3 deletions
|
|
@ -63,7 +63,7 @@ builder.Services.AddCascadingAuthenticationState();
|
|||
|
||||
builder.Services.AddAuthorization();
|
||||
|
||||
// Add `.PersistKeysTo…()` and `.ProtectKeysWith…()`calls
|
||||
// Add `.PersistKeysTo…()` and `.ProtectKeysWith…()` calls
|
||||
// See more at https://docs.duendesoftware.com/general/data-protection
|
||||
_ = builder.Services.AddDataProtection()
|
||||
.SetApplicationName("BFF");
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ internal static class HostingExtensions
|
|||
options.TokenValidationParameters.RoleClaimType = "role";
|
||||
});
|
||||
|
||||
// Add `.PersistKeysTo…()` and `.ProtectKeysWith…()`calls
|
||||
// Add `.PersistKeysTo…()` and `.ProtectKeysWith…()` calls
|
||||
// See more at https://docs.duendesoftware.com/general/data-protection
|
||||
_ = builder.Services.AddDataProtection()
|
||||
.SetApplicationName("BFF");
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ builder.Services.AddAuthentication(options =>
|
|||
};
|
||||
});
|
||||
|
||||
// Add `.PersistKeysTo…()` and `.ProtectKeysWith…()`calls
|
||||
// Add `.PersistKeysTo…()` and `.ProtectKeysWith…()` calls
|
||||
// See more at https://docs.duendesoftware.com/general/data-protection
|
||||
_ = builder.Services.AddDataProtection()
|
||||
.SetApplicationName("BFF");
|
||||
|
|
|
|||
Loading…
Reference in a new issue