We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 069b76b commit c037ad8Copy full SHA for c037ad8
1 file changed
lib/public/AppFramework/Http/FeaturePolicy.php
@@ -41,7 +41,19 @@ class FeaturePolicy extends EmptyFeaturePolicy {
41
'\'self\'',
42
];
43
44
+ /** @var string[] of allowed domains that can access the camera */
45
+ protected $cameraDomains = [];
46
+
47
protected $fullscreenDomains = [
48
49
50
51
+ /** @var string[] of allowed domains that can use the geolocation of the device */
52
+ protected $geolocationDomains = [];
53
54
+ /** @var string[] of allowed domains that can use the microphone */
55
+ protected $microphoneDomains = [];
56
57
+ /** @var string[] of allowed domains that can use the payment API */
58
+ protected $paymentDomains = [];
59
}
0 commit comments