-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
49 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use TYPO3\CMS\Core\Security\ContentSecurityPolicy\Directive; | ||
use TYPO3\CMS\Core\Security\ContentSecurityPolicy\Mutation; | ||
use TYPO3\CMS\Core\Security\ContentSecurityPolicy\MutationCollection; | ||
use TYPO3\CMS\Core\Security\ContentSecurityPolicy\MutationMode; | ||
use TYPO3\CMS\Core\Security\ContentSecurityPolicy\Scope; | ||
use TYPO3\CMS\Core\Security\ContentSecurityPolicy\SourceScheme; | ||
use TYPO3\CMS\Core\Security\ContentSecurityPolicy\UriValue; | ||
use TYPO3\CMS\Core\Type\Map; | ||
|
||
return Map::fromEntries([ | ||
Scope::backend(), | ||
|
||
new MutationCollection( | ||
// The csp extension is required for images in the PreviewRenderer when active | ||
new Mutation( | ||
MutationMode::Extend, | ||
Directive::ImgSrc, | ||
SourceScheme::data, | ||
new UriValue('*.sndcdn.com'), | ||
), | ||
|
||
// The csp extension is required for the IFrame in the info window | ||
new Mutation( | ||
MutationMode::Extend, | ||
Directive::FrameSrc, | ||
SourceScheme::data, | ||
new UriValue('*.soundcloud.com'), | ||
), | ||
), | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters