Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#### Link to ticket

Please add a link to the ticket being addressed by this change.

#### Description

Please include a short description of the suggested change and the reasoning behind the approach you have chosen.

#### Screenshot of the result

If your change affects the user interface you should include a screenshot of the result with the pull request.

#### Checklist

- [ ] My code is covered by test cases.
- [ ] My code passes our test (all our tests).
- [ ] My code passes our static analysis suite.
- [ ] My code passes our continuous integration process.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

* [#15](https://github.com/itk-dev/project-database/pull/15)
Security updates
* [#14](https://github.com/itk-dev/project-database/pull/14)
Aligned the development setup with the itk-dev D11 Docker template
* [#13](https://github.com/itk-dev/project-database/pull/13)
Expand Down
55 changes: 28 additions & 27 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions web/sites/default/default.settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -842,6 +842,23 @@
# $settings['migrate_file_public_path'] = '';
# $settings['migrate_file_private_path'] = '';

/**
* Media oEmbed discovery trusted host configuration.
*
* The oEmbed spec allows for provider/resource discovery by fetching a URL. The
* patterns here restrict which domains Drupal will make a request to for oEmbed
* discovery.
*
* For example:
* @code
* $settings['media_oembed_discovery_trusted_host_patterns'] = [
* '^www\.example\.com$',
* ];
* @endcode
* will allow the site to make oEmbed discovery requests to www.example.com.
*/
# $settings['media_oembed_discovery_trusted_host_patterns'] = [];

/**
* Load local development override configuration, if available.
*
Expand Down