From 8108ce57441c7907792587540119b9ef1084ca36 Mon Sep 17 00:00:00 2001 From: Marc Goodson Date: Tue, 3 Dec 2024 13:17:24 +0000 Subject: [PATCH 1/2] Update the-licensing-model.md Update the helpful settings key for licences to match the structure of the JSON --- 15/umbraco-commerce/getting-started/the-licensing-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15/umbraco-commerce/getting-started/the-licensing-model.md b/15/umbraco-commerce/getting-started/the-licensing-model.md index 8d8bdf9515c..63490311b69 100644 --- a/15/umbraco-commerce/getting-started/the-licensing-model.md +++ b/15/umbraco-commerce/getting-started/the-licensing-model.md @@ -57,7 +57,7 @@ Once you have received your license code it needs to be installed on your site. 1. Open the root directory for your project files. 2. Locate and open the `appSettings.json` file. -3. Add your Umbraco Commerce license key to `Umbraco:Licenses:Umbraco.Commerce`: +3. Add your Umbraco Commerce license key to `Umbraco:Licenses:Products:Umbraco.Commerce`: ```json "Umbraco": { From 90d7347c699fd8707e106da82abc9e57aafd8e6a Mon Sep 17 00:00:00 2001 From: Marc Goodson Date: Tue, 3 Dec 2024 13:35:08 +0000 Subject: [PATCH 2/2] doh other way around Products shouldn't be in the JSON!, the key was correct --- 15/umbraco-commerce/getting-started/the-licensing-model.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/15/umbraco-commerce/getting-started/the-licensing-model.md b/15/umbraco-commerce/getting-started/the-licensing-model.md index 63490311b69..e11edf62348 100644 --- a/15/umbraco-commerce/getting-started/the-licensing-model.md +++ b/15/umbraco-commerce/getting-started/the-licensing-model.md @@ -57,14 +57,12 @@ Once you have received your license code it needs to be installed on your site. 1. Open the root directory for your project files. 2. Locate and open the `appSettings.json` file. -3. Add your Umbraco Commerce license key to `Umbraco:Licenses:Products:Umbraco.Commerce`: +3. Add your Umbraco Commerce license key to `Umbraco:Licenses:Umbraco.Commerce`: ```json "Umbraco": { "Licenses": { - "Products": { "Umbraco.Commerce": "YOUR_LICENSE_KEY" - } } } ```