Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DDFBRA-134 - Setup simple_oauth module #1737

Merged
merged 16 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
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
15 changes: 15 additions & 0 deletions assets/all.settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,21 @@
// advanced security measure: '../config/sync'.
$settings['config_sync_directory'] = '../config/sync';

/**
* Private file path.
*
* A local file system path where private files will be stored. This directory
* must be absolute, outside the Drupal installation directory and not
* accessible over the web.
*
* Note: Caches need to be cleared when this value is changed to make the
* private:// stream wrapper available to the system.
*
* See https://www.drupal.org/documentation/modules/file for more information
* about securing private files.
*/
$settings['file_private_path'] = $app_root . '/sites/default/files/private';

// Set service base urls for the react apps.
$config['dpl_react_apps.settings']['services'] = [
'cover' => ['base_url' => 'https://cover.dandigbib.org'],
Expand Down
8 changes: 6 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@
"composer/installers": "1.12.0",
"cweagans/composer-patches": "1.7.3",
"danskernesdigitalebibliotek/cms-api": "*",
"danskernesdigitalebibliotek/dpl-design-system": "2024.47.1",
"danskernesdigitalebibliotek/dpl-react": "2024.47.0",
"danskernesdigitalebibliotek/dpl-design-system": "^2024.47",
"danskernesdigitalebibliotek/dpl-react": "^2024.47",
"danskernesdigitalebibliotek/fbs-client": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"deoliveiralucas/array-keys-case-transform": "^1.1",
Expand Down Expand Up @@ -164,6 +164,7 @@
"drupal/select2_multicheck": "^1.0",
"drupal/selective_better_exposed_filters": "^3.0",
"drupal/simple_menu_permissions": "^2.0",
"drupal/simple_oauth": "^5.2",
"drupal/taxonomy_unique": "^2.5",
"drupal/telephone_formatter": "^1.2",
"drupal/theme_permission": "^2.0",
Expand Down Expand Up @@ -339,6 +340,9 @@
"drupal/jsonlog": {
"3251587: Change logging from stdout to stderr": "https://www.drupal.org/files/issues/2021-11-29/jsonlog-change-stdout-to-stderr-3251587-3.patch"
},
"drupal/openapi": {
"3480050: Update oauth2 security definitions to match openapi v2 specification": "https://www.drupal.org/files/issues/2024-10-11/openapi-add-oauth2-accesscode-flow-3480050-3.patch"
},
"drupal/openapi_rest": {
"3171530 + 3116760: Add support for parameter and response descriptions": "patches/openapi-parameter-response-descriptions-14-3.patch",
"3343816: Specification includes disabled resources": "https://git.drupalcode.org/project/openapi_rest/-/commit/6618157334feca93fad1041583375eed660b9085.patch"
Expand Down
Loading
Loading