Page URL
https://firefox-admin-docs.mozilla.org/reference/policies/localnetworkaccess/
What specific section or headline is this issue about?
Examples
What did you expect to see?
The rest of the documentation is correct, but the example shows a URL which is misleading, as it wants a hostname.
I guess it's caused by this line:
|
"LocalNetworkAccess": { |
|
"type": "object", |
|
"x-category": "Network security", |
|
"description": "Configure local network access security features.", |
|
"examples": [ |
|
{ |
|
"Enabled": true, |
|
"BlockTrackers": true, |
|
"EnablePrompting": true, |
|
"SkipDomains": ["https://example.org/"], |
|
"Locked": true |
|
} |
It should probably be
"LocalNetworkAccess": {
"type": "object",
"x-category": "Network security",
"description": "Configure local network access security features.",
"examples": [
{
"Enabled": true,
"BlockTrackers": true,
"EnablePrompting": true,
- "SkipDomains": ["https://example.org/"],
+ "SkipDomains": ["example.org"],
"Locked": true
}
],
Do you have anything more you want to share?
No response
Page URL
https://firefox-admin-docs.mozilla.org/reference/policies/localnetworkaccess/
What specific section or headline is this issue about?
Examples
What did you expect to see?
The rest of the documentation is correct, but the example shows a URL which is misleading, as it wants a hostname.
I guess it's caused by this line:
enterprise-admin-reference/schema/policies-schema.json
Lines 1812 to 1823 in dc9e3e3
It should probably be
"LocalNetworkAccess": { "type": "object", "x-category": "Network security", "description": "Configure local network access security features.", "examples": [ { "Enabled": true, "BlockTrackers": true, "EnablePrompting": true, - "SkipDomains": ["https://example.org/"], + "SkipDomains": ["example.org"], "Locked": true } ],Do you have anything more you want to share?
No response