mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-23 22:13:38 +00:00
fix: add missing permission policy config
This commit is contained in:
parent
013cfbb259
commit
66a9a29bbf
|
@ -79,6 +79,7 @@ Name | Description | Values | Default
|
||||||
`$wgCitizenEnableStrictReferrerPolicy` | Enable or disable `strict-origin-when-cross-origin` [referrer policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy) header, should be used in conjunction with [`$wgReferrerPolicy`](https://www.mediawiki.org/wiki/Manual:$wgReferrerPolicy) as that only outputs the meta tags | `true` - enable; `false` - disable | `false`
|
`$wgCitizenEnableStrictReferrerPolicy` | Enable or disable `strict-origin-when-cross-origin` [referrer policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy) header, should be used in conjunction with [`$wgReferrerPolicy`](https://www.mediawiki.org/wiki/Manual:$wgReferrerPolicy) as that only outputs the meta tags | `true` - enable; `false` - disable | `false`
|
||||||
`$wgCitizenEnableFeaturePolicy` | Enable or disable [Feature Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy) | `true` - enable; `false` - disable | `false`
|
`$wgCitizenEnableFeaturePolicy` | Enable or disable [Feature Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy) | `true` - enable; `false` - disable | `false`
|
||||||
`$wgCitizenFeaturePolicyDirective` | The string of your Feature Policy directive | See the [Feature Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy) page |
|
`$wgCitizenFeaturePolicyDirective` | The string of your Feature Policy directive | See the [Feature Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy) page |
|
||||||
|
`$wgCitizenEnablePermissionsPolicy` | Enable or disable Permissions Policy | `true` - enable; `false` - disable | `false`
|
||||||
`$wgCitizenPermissionsPolicyDirective` | The string of your Permissions Policy directive | |
|
`$wgCitizenPermissionsPolicyDirective` | The string of your Permissions Policy directive | |
|
||||||
|
|
||||||
### Webapp manifest
|
### Webapp manifest
|
||||||
|
|
|
@ -634,6 +634,12 @@
|
||||||
"descriptionmsg": "citizen-config-featurepolicydirective",
|
"descriptionmsg": "citizen-config-featurepolicydirective",
|
||||||
"public": true
|
"public": true
|
||||||
},
|
},
|
||||||
|
"EnablePermissionsPolicy": {
|
||||||
|
"value": false,
|
||||||
|
"description": "Enable or disable Permissions Policy",
|
||||||
|
"descriptionmsg": "citizen-config-enablepermissionspolicy",
|
||||||
|
"public": true
|
||||||
|
},
|
||||||
"PermissionsPolicyDirective": {
|
"PermissionsPolicyDirective": {
|
||||||
"value": "",
|
"value": "",
|
||||||
"description": "The string of your Permissions Policy directive",
|
"description": "The string of your Permissions Policy directive",
|
||||||
|
|
Loading…
Reference in a new issue