Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 10/umbraco-workflow/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ All Workflow configuration is optional and will a fallback to defaults, if not s
"ReminderNotificationPeriod": Timespan.FromHours(8),
"EnableTestLicense": false,
"EmailTemplatePath": "~/Views/Partials/WorkflowEmails",
"SettingsCustomization: {...}
"SettingsCustomization": {...}
}
```

Expand Down
6 changes: 3 additions & 3 deletions 10/umbraco-workflow/installation/licensing.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ To impersonate the full license on a local site, set `EnableTestLicense` to `tru

```json
{
Umbraco: {
Workflow: {
EnableTestLicense: true
"Umbraco": {
"Workflow": {
"EnableTestLicense": true
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion 13/umbraco-engage/developers/analytics/forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ icon: square-exclamation

# Extending forms

To track Umbraco Forms submissions, you need to install [Umbraco Forms](https://umbraco.com/products/add-ons/forms/) with a valid license from Umbraco HQ. You also need to install the Umbraco Engage[ Forms Addon package from Nuget](https://www.nuget.org/packages/Umbraco.Engage.UmbracoForms).
To track Umbraco Forms submissions, you need to install [Umbraco Forms](https://umbraco.com/products/add-ons/forms/) with a valid license from Umbraco HQ. You also need to install the Umbraco Engage[ Forms Addon package from Nuget](https://www.nuget.org/packages/Umbraco.Engage.Forms).

## Summary

Expand Down
6 changes: 3 additions & 3 deletions 13/umbraco-workflow/installation/licensing.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ To impersonate the full license on a local site, set `EnableTestLicense` to `tru

```json
{
Umbraco: {
Workflow: {
EnableTestLicense: true
"Umbraco": {
"Workflow": {
"EnableTestLicense": true
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion 14/umbraco-workflow/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ All Workflow configuration is optional and will fallback to defaults, if not set
"TimeFormat": "h:mm tt",
"TimeFormatShort": "HH:mm"
},
"SettingsCustomization: {...}
"SettingsCustomization": {...}
}
```

Expand Down
6 changes: 3 additions & 3 deletions 14/umbraco-workflow/installation/licensing.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ To impersonate the full license on a local site, set `EnableTestLicense` to `tru

```json
{
Umbraco: {
Workflow: {
EnableTestLicense: true
"Umbraco": {
"Workflow": {
"EnableTestLicense": true
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion 15/umbraco-workflow/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ All Workflow configuration is optional and will fallback to defaults, if not set
"TimeFormat": "h:mm tt",
"TimeFormatShort": "HH:mm"
},
"SettingsCustomization: {...}
"SettingsCustomization": {...}
}
```

Expand Down
7 changes: 4 additions & 3 deletions 15/umbraco-workflow/installation/licensing.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ To impersonate the full license on a local site, set `EnableTestLicense` to `tru

```json
{
Umbraco: {
Workflow: {
EnableTestLicense: true
"Umbraco": {
"Workflow": {
"EnableTestLicense": true
}
}
}
Expand Down Expand Up @@ -128,6 +128,7 @@ Then configure a random string as an authorization key in configuration. This is
"EnableScheduledValidation": false,
"ValidatedLicenseRelayAuthKey": "<your authorization key>"
}
}
```

Your Internet enabled server should make a request of the following form to the online license validation service:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

The Umbraco backoffice can be extended using AngularJS and C#. Customizing the Umbraco backoffice and editing experience includes creating your own Property Editors, Dashboards, and packages. You will also find information about how to customize things like Health Checks and the built-in search functionality.

Check out[ the Extending section](http://127.0.0.1:5000/s/OdQETpqkO0Kcv8KMquKL/extending) in the CMS docs for a good place to start.
Check out [the Extending section](https://docs.umbraco.com/welcome/getting-started/developing-websites-with-umbraco/extending-the-umbraco-backoffice) in the CMS docs for a good place to start.

Check warning on line 27 in generic/getting-started/developing-websites-with-umbraco/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.Terms] We prefer 'documentation' over 'docs.' Raw Output: {"message": "[UmbracoDocs.Terms] We prefer 'documentation' over 'docs.'", "location": {"path": "generic/getting-started/developing-websites-with-umbraco/README.md", "range": {"start": {"line": 27, "column": 162}}}, "severity": "WARNING"}

{% hint style="info" %}
From a frontend perspective, Umbraco does not dictate HTML, CSS, or JS in your website build. There is nothing Umbraco-specific about it.
Expand Down
6 changes: 3 additions & 3 deletions umbraco-cloud/set-up/project-settings/secrets-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ You should specify this with a corresponding name in a configuration file such a

```json
{
Serilog: {
"Serilog": {
},
Umbraco:{
"Umbraco":{
},
ApiKey”: “Value,
"ApiKey": "Value",
}
```

Expand Down
Loading