Skip to content

Commit

Permalink
DIGITAL-141: Install Rabbit Hole module
Browse files Browse the repository at this point in the history
* Installs rabbit hole and rabbit hole node modules
* Configures guide navigation, short post, and source nodes to display a 404 when viewed.
  • Loading branch information
omerida committed Jan 2, 2025
1 parent 972f5f9 commit b66d398
Show file tree
Hide file tree
Showing 10 changed files with 158 additions and 4 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"drupal/paragraph_view_mode": "^3.1",
"drupal/paragraphs": "^1.18",
"drupal/pathauto": "^1.13",
"drupal/rabbit_hole": "^1.0",
"drupal/redirect": "^1.10",
"drupal/remove_username": "^1.5",
"drupal/require_revision_log_message": "^2.0",
Expand Down
87 changes: 83 additions & 4 deletions composer.lock

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

1 change: 1 addition & 0 deletions composer.log
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ b4d1a71ae39798e387fe895acb3c924c|Oscar Merida|feature/DIGITAL-140-security-kit|T
bd7840ebd67d69715dbd07eef9ceb742|cathybaptista|feature/DIGITAL-114-implement-identifier-block|Thu Dec 19 12:41:31 EST 2024|./composer.sh require drupal/config_pages
72cca00bd0b4403e0db152c489a8e0a1|Matt Poole|feature/DIGITAL-114-implement-identifier-block|Thu Dec 19 15:32:32 EST 2024|./composer.sh require drupal/link_class
b9a62f1676c64c163727b0feef5db80f|christian medders|feature/DIGITAL-40-gtm|Fri Dec 20 15:46:24 EST 2024|./composer.sh require drupal/google_tag:^2.0
aa1d67143f3dc1ef06e8037ecc33aef0|Oscar Merida|feature/DIGITAL-141-rabbit-hole-config|Thu Jan 2 10:30:11 EST 2025|./composer.sh require drupal/rabbit_hole
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ dependencies:
config:
- field.field.node.source.field_logo
- node.type.source
- workflows.workflow.editorial
module:
- content_moderation
- media_library
Expand Down
2 changes: 2 additions & 0 deletions config/sync/core.extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,11 @@ module:
paragraphs_type_permissions: 0
path: 0
path_alias: 0
rabbit_hole: 0
redirect: 0
remove_username: 0
require_revision_log_message: 0
rh_node: 0
role_delegation: 0
scheduler: 0
scheduler_content_moderation_integration: 0
Expand Down
14 changes: 14 additions & 0 deletions config/sync/rabbit_hole.behavior_settings.default.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
uuid: e2a2604a-fb71-48a5-8d58-787d06ddf62a
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: hzh9CgsYCGxPEcbR3ieT1la6e43lMv-ivoN7oZJKkQQ
id: default
entity_type_id: null
entity_id: null
action: display_page
allow_override: 1
redirect: ''
redirect_code: 0
redirect_fallback_action: access_denied
14 changes: 14 additions & 0 deletions config/sync/rabbit_hole.behavior_settings.default_bundle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
uuid: b2c7c3fe-42c4-4049-865d-820948f883de
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: qUkgsWZRCa_sLIn5JsMzB3xnx5ekIsVeGGZr7T0s9MY
id: default_bundle
entity_type_id: null
entity_id: null
action: display_page
allow_override: 1
redirect: ''
redirect_code: 0
redirect_fallback_action: access_denied
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
uuid: a007a973-c123-413a-af5a-e68673cacaae
langcode: en
status: true
dependencies:
config:
- node.type.guide_navigation
id: node_type_guide_navigation
entity_type_id: node_type
entity_id: guide_navigation
action: page_not_found
allow_override: 0
redirect: ''
redirect_code: 301
redirect_fallback_action: access_denied
14 changes: 14 additions & 0 deletions config/sync/rabbit_hole.behavior_settings.node_type_short_post.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
uuid: e0003873-f144-4454-9f45-9aac7623e22c
langcode: en
status: true
dependencies:
config:
- node.type.short_post
id: node_type_short_post
entity_type_id: node_type
entity_id: short_post
action: access_denied
allow_override: 0
redirect: ''
redirect_code: 301
redirect_fallback_action: access_denied
14 changes: 14 additions & 0 deletions config/sync/rabbit_hole.behavior_settings.node_type_source.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
uuid: 5000fcb9-708b-4375-bfb1-3f8115984777
langcode: en
status: true
dependencies:
config:
- node.type.source
id: node_type_source
entity_type_id: node_type
entity_id: source
action: access_denied
allow_override: 0
redirect: ''
redirect_code: 301
redirect_fallback_action: access_denied

0 comments on commit b66d398

Please sign in to comment.