Skip to content

Commit

Permalink
feat: Imported Firefox 85.0b5 schema (#3538)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpl authored Jan 11, 2021
1 parent 856a15d commit 2e64b44
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion src/schema/imported/privacy.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,24 @@
"description": "This property controls the minimum and maximum TLS versions. This setting's value is an object of $(ref:tlsVersionRestrictionConfig)."
}
]
},
"httpsOnlyMode": {
"allOf": [
{
"$ref": "types#/types/Setting"
},
{
"description": "Allow users to query the mode for 'HTTPS-Only Mode'. This setting's value is of type HTTPSOnlyModeOption, defaulting to <code>never</code>."
}
]
}
},
"required": [
"networkPredictionEnabled",
"peerConnectionEnabled",
"webRTCIPHandlingPolicy",
"tlsVersionRestriction"
"tlsVersionRestriction",
"httpsOnlyMode"
]
},
"services": {
Expand Down Expand Up @@ -238,6 +249,15 @@
}
}
},
"HTTPSOnlyModeOption": {
"type": "string",
"enum": [
"always",
"private_browsing",
"never"
],
"description": "The mode for https-only mode."
},
"TrackingProtectionModeOption": {
"type": "string",
"enum": [
Expand Down

0 comments on commit 2e64b44

Please sign in to comment.