From 8e735d066e79bfc519743100dc180a872610706b Mon Sep 17 00:00:00 2001 From: Ovindu Atukorala Date: Fri, 4 Oct 2024 20:06:39 +0000 Subject: [PATCH 1/2] Add description for language variants --- 14/umbraco-cms/reference/language-variation.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/14/umbraco-cms/reference/language-variation.md b/14/umbraco-cms/reference/language-variation.md index aa55e90113b..97d34358419 100644 --- a/14/umbraco-cms/reference/language-variation.md +++ b/14/umbraco-cms/reference/language-variation.md @@ -1,3 +1,7 @@ +--- +description: Language variants allow you to have different variations of content based on the language culture. Learn how to use them in this section. +--- + # Language Variation Language Variation allows you to have different variations of content based on a language culture. In the documentation there are other useful articles about the feature: From c523006ec065730f6b32e24029761271655e456c Mon Sep 17 00:00:00 2001 From: Ovindu Atukorala Date: Fri, 4 Oct 2024 20:15:45 +0000 Subject: [PATCH 2/2] Add description for custom password check --- 14/umbraco-cms/reference/security/custom-password-check.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/14/umbraco-cms/reference/security/custom-password-check.md b/14/umbraco-cms/reference/security/custom-password-check.md index 21aa0969c6c..4b952fee6e9 100644 --- a/14/umbraco-cms/reference/security/custom-password-check.md +++ b/14/umbraco-cms/reference/security/custom-password-check.md @@ -1,3 +1,8 @@ +--- +description: You can specify your own logic to validate a username and password against a custom data store. Learn more about it in this section. +--- + + # Replacing the basic username/password check Having the ability to replace the logic to validate a username and password against a custom data store is important to some developers. Normally in ASP.Net Core Identity this would require you to override the `UmbracoBackOfficeUserManager.CheckPasswordAsync` implementation and then replace the `UmbracoBackOfficeUserManager` with your own class during startup. Since this is a common task we've made this process a lot easier with an interface called `IBackOfficeUserPasswordChecker`.