Apply database updates

This commit is contained in:
Keegan Rankin 2024-02-12 11:48:10 -08:00
parent 4e28912a5b
commit e18bfc02d0
38 changed files with 93 additions and 32 deletions

View file

@ -0,0 +1 @@
menu_depth: 4

View file

@ -0,0 +1,2 @@
max_bundle_number: 20
hoverintent_functionality: true

View file

@ -10,3 +10,4 @@ notification:
message: 'Saving draft...' message: 'Saving draft...'
delay: 1000 delay: 1000
allowed_content_entity_types: { } allowed_content_entity_types: { }
allowed_new: true

View file

@ -8,4 +8,11 @@ id: config_sync.module.admin_toolbar
snapshotSet: config_sync snapshotSet: config_sync
extensionType: module extensionType: module
extensionName: admin_toolbar extensionName: admin_toolbar
items: { } items:
-
collection: ''
name: admin_toolbar.settings
data:
menu_depth: 4
_core:
default_config_hash: jvTSppzcgH5wnzBhX5xnAExcp2I1CzkQ_aky65XNfYI

View file

@ -8,4 +8,13 @@ id: config_sync.module.admin_toolbar_tools
snapshotSet: config_sync snapshotSet: config_sync
extensionType: module extensionType: module
extensionName: admin_toolbar_tools extensionName: admin_toolbar_tools
items: { } items:
-
collection: ''
name: admin_toolbar_tools.settings
data:
max_bundle_number: 20
hoverintent_functionality: true
show_local_tasks: false
_core:
default_config_hash: WgdZsrd_5w9jlmcHV4R9dD2tG9OZEkYo4I_O8h7Gq8Q

View file

@ -8,12 +8,16 @@ dependencies:
- field.field.node.article.comment - field.field.node.article.comment
- field.field.node.article.field_article_type - field.field.node.article.field_article_type
- field.field.node.article.field_authors - field.field.node.article.field_authors
- field.field.node.article.field_biography
- field.field.node.article.field_body_paragraph - field.field.node.article.field_body_paragraph
- field.field.node.article.field_image - field.field.node.article.field_image
- field.field.node.article.field_meta_tags - field.field.node.article.field_meta_tags
- field.field.node.article.field_publication_date
- field.field.node.article.field_subtitle
- field.field.node.article.field_summary - field.field.node.article.field_summary
- field.field.node.article.field_tags - field.field.node.article.field_tags
- field.field.node.article.field_topics - field.field.node.article.field_topics
- field.field.node.article.field_upload
- image.style.square_thumbnail - image.style.square_thumbnail
- node.type.article - node.type.article
module: module:
@ -103,6 +107,8 @@ content:
settings: settings:
image_link: content image_link: content
image_style: square_thumbnail image_style: square_thumbnail
image_loading:
attribute: lazy
third_party_settings: { } third_party_settings: { }
weight: 0 weight: 0
region: ds_content region: ds_content
@ -124,6 +130,7 @@ hidden:
comment: true comment: true
field_article_type: true field_article_type: true
field_authors: true field_authors: true
field_biography: true
field_body_paragraph: true field_body_paragraph: true
field_economic_sectors: true field_economic_sectors: true
field_institutions_structures: true field_institutions_structures: true

View file

@ -8,12 +8,16 @@ dependencies:
- field.field.node.article.comment - field.field.node.article.comment
- field.field.node.article.field_article_type - field.field.node.article.field_article_type
- field.field.node.article.field_authors - field.field.node.article.field_authors
- field.field.node.article.field_biography
- field.field.node.article.field_body_paragraph - field.field.node.article.field_body_paragraph
- field.field.node.article.field_image - field.field.node.article.field_image
- field.field.node.article.field_meta_tags - field.field.node.article.field_meta_tags
- field.field.node.article.field_publication_date
- field.field.node.article.field_subtitle
- field.field.node.article.field_summary - field.field.node.article.field_summary
- field.field.node.article.field_tags - field.field.node.article.field_tags
- field.field.node.article.field_topics - field.field.node.article.field_topics
- field.field.node.article.field_upload
- image.style.small_square - image.style.small_square
- node.type.article - node.type.article
module: module:
@ -68,6 +72,8 @@ content:
settings: settings:
image_link: '' image_link: ''
image_style: small_square image_style: small_square
image_loading:
attribute: lazy
third_party_settings: { } third_party_settings: { }
weight: 0 weight: 0
region: ds_content region: ds_content
@ -100,6 +106,7 @@ hidden:
comment: true comment: true
field_article_type: true field_article_type: true
field_authors: true field_authors: true
field_biography: true
field_body_paragraph: true field_body_paragraph: true
field_economic_sectors: true field_economic_sectors: true
field_institutions_structures: true field_institutions_structures: true

View file

@ -10,9 +10,11 @@ dependencies:
- field.field.node.blog.field_body_paragraph - field.field.node.blog.field_body_paragraph
- field.field.node.blog.field_image - field.field.node.blog.field_image
- field.field.node.blog.field_meta_tags - field.field.node.blog.field_meta_tags
- field.field.node.blog.field_publication_date
- field.field.node.blog.field_summary - field.field.node.blog.field_summary
- field.field.node.blog.field_tags - field.field.node.blog.field_tags
- field.field.node.blog.field_topics - field.field.node.blog.field_topics
- field.field.node.blog.field_upload
- image.style.square_thumbnail - image.style.square_thumbnail
- node.type.blog - node.type.blog
module: module:
@ -103,6 +105,8 @@ content:
settings: settings:
image_link: content image_link: content
image_style: square_thumbnail image_style: square_thumbnail
image_loading:
attribute: lazy
third_party_settings: { } third_party_settings: { }
weight: 2 weight: 2
region: ds_content region: ds_content

View file

@ -81,6 +81,8 @@ content:
settings: settings:
image_link: '' image_link: ''
image_style: '' image_style: ''
image_loading:
attribute: lazy
third_party_settings: { } third_party_settings: { }
weight: 3 weight: 3
region: content region: content

View file

@ -112,6 +112,8 @@ content:
settings: settings:
image_link: '' image_link: ''
image_style: '' image_style: ''
image_loading:
attribute: lazy
third_party_settings: { } third_party_settings: { }
weight: 0 weight: 0
region: header region: header

View file

@ -33,6 +33,8 @@ content:
settings: settings:
image_link: '' image_link: ''
image_style: '' image_style: ''
image_loading:
attribute: lazy
third_party_settings: { } third_party_settings: { }
weight: 2 weight: 2
region: content region: content

View file

@ -21,6 +21,8 @@ content:
settings: settings:
image_link: '' image_link: ''
image_style: large image_style: large
image_loading:
attribute: lazy
third_party_settings: { } third_party_settings: { }
weight: 0 weight: 0
region: content region: content

View file

@ -20,6 +20,8 @@ content:
settings: settings:
image_link: content image_link: content
image_style: thumbnail image_style: thumbnail
image_loading:
attribute: lazy
third_party_settings: { } third_party_settings: { }
weight: 0 weight: 0
region: content region: content

View file

@ -94,6 +94,7 @@ module:
migrate_source_csv: 0 migrate_source_csv: 0
migrate_tools: 0 migrate_tools: 0
minimalhtml: 0 minimalhtml: 0
mysql: 0
node: 0 node: 0
noreferrer: 0 noreferrer: 0
options: 0 options: 0

View file

@ -43,10 +43,6 @@ settings:
items: items:
- Source - Source
plugins: plugins:
language:
language_list: un
stylescombo:
styles: ''
drupallink: drupallink:
linkit_enabled: true linkit_enabled: true
linkit_profile: '' linkit_profile: ''

View file

@ -52,10 +52,6 @@ settings:
- ShowBlocks - ShowBlocks
- Source - Source
plugins: plugins:
stylescombo:
styles: ''
language:
language_list: un
drupallink: drupallink:
linkit_enabled: true linkit_enabled: true
linkit_profile: default linkit_profile: default

View file

@ -38,14 +38,6 @@ settings:
items: items:
- Source - Source
plugins: plugins:
language:
language_list: un
stylescombo:
styles: ''
indentblock:
enable: 0
colorbutton:
colors: ''
linebreaks: linebreaks:
method: force method: force
image_upload: image_upload:

View file

@ -13,6 +13,8 @@ id: article_topics
name: 'Article Topics' name: 'Article Topics'
weight: 0 weight: 0
min_count: 1 min_count: 1
missing: false
missing_label: others
url_alias: article_topics url_alias: article_topics
facet_source_id: 'search_api:views_page__article__page_listing' facet_source_id: 'search_api:views_page__article__page_listing'
field_identifier: field_topics field_identifier: field_topics

View file

@ -13,6 +13,8 @@ id: article_type
name: 'Article Type' name: 'Article Type'
weight: 0 weight: 0
min_count: 1 min_count: 1
missing: false
missing_label: others
url_alias: article_type url_alias: article_type
facet_source_id: 'search_api:views_page__article__page_listing' facet_source_id: 'search_api:views_page__article__page_listing'
field_identifier: field_article_type field_identifier: field_article_type

View file

@ -13,6 +13,8 @@ id: blog_topics
name: 'Blog Topics' name: 'Blog Topics'
weight: 0 weight: 0
min_count: 1 min_count: 1
missing: false
missing_label: others
url_alias: blog_topics url_alias: blog_topics
facet_source_id: 'search_api:views_page__blog__page_listing' facet_source_id: 'search_api:views_page__blog__page_listing'
field_identifier: field_topics field_identifier: field_topics

View file

@ -13,6 +13,8 @@ id: search_content_type
name: 'Search content type' name: 'Search content type'
weight: 0 weight: 0
min_count: 1 min_count: 1
missing: false
missing_label: others
url_alias: search_content_type url_alias: search_content_type
facet_source_id: 'search_api:views_page__search__page_1' facet_source_id: 'search_api:views_page__search__page_1'
field_identifier: type field_identifier: type

View file

@ -13,6 +13,8 @@ id: search_date
name: 'Search date' name: 'Search date'
weight: 0 weight: 0
min_count: 1 min_count: 1
missing: false
missing_label: others
url_alias: search_date url_alias: search_date
facet_source_id: 'search_api:views_page__search__page_1' facet_source_id: 'search_api:views_page__search__page_1'
field_identifier: created field_identifier: created

View file

@ -13,6 +13,8 @@ id: search_topics
name: 'Search topics' name: 'Search topics'
weight: 0 weight: 0
min_count: 1 min_count: 1
missing: false
missing_label: others
url_alias: search_topics url_alias: search_topics
facet_source_id: 'search_api:views_page__search__page_1' facet_source_id: 'search_api:views_page__search__page_1'
field_identifier: field_topics field_identifier: field_topics

View file

@ -3,5 +3,19 @@ _core:
text_formats: text_formats:
- full_html - full_html
css_classes: css_classes:
file: '' file:
image: '' - ''
image:
- ''
absolute: false
file_field_images_enabled: false
widgets:
file:
- file_generic
image:
- image_image
file_extensions:
audio:
- mp3
video:
- mp4

View file

@ -10,7 +10,7 @@ type: 'canonical_entities:node'
pattern: 'gleanings/[node:title]' pattern: 'gleanings/[node:title]'
selection_criteria: selection_criteria:
16c2c31d-685e-4e54-80a7-d6bb8a344155: 16c2c31d-685e-4e54-80a7-d6bb8a344155:
id: node_type id: 'entity_bundle:node'
negate: false negate: false
uuid: 16c2c31d-685e-4e54-80a7-d6bb8a344155 uuid: 16c2c31d-685e-4e54-80a7-d6bb8a344155
context_mapping: context_mapping:

View file

@ -12,7 +12,7 @@ type: 'canonical_entities:node'
pattern: 'articles/[node:title]' pattern: 'articles/[node:title]'
selection_criteria: selection_criteria:
03faf328-473f-4ba7-bafe-72df857287d9: 03faf328-473f-4ba7-bafe-72df857287d9:
id: node_type id: 'entity_bundle:node'
negate: false negate: false
uuid: 03faf328-473f-4ba7-bafe-72df857287d9 uuid: 03faf328-473f-4ba7-bafe-72df857287d9
context_mapping: context_mapping:

View file

@ -12,7 +12,7 @@ type: 'canonical_entities:node'
pattern: 'blog/[node:title]' pattern: 'blog/[node:title]'
selection_criteria: selection_criteria:
cbbc8b23-30be-44a8-969b-ef9c72e952ab: cbbc8b23-30be-44a8-969b-ef9c72e952ab:
id: node_type id: 'entity_bundle:node'
negate: false negate: false
uuid: cbbc8b23-30be-44a8-969b-ef9c72e952ab uuid: cbbc8b23-30be-44a8-969b-ef9c72e952ab
context_mapping: context_mapping:

View file

@ -12,7 +12,7 @@ type: 'canonical_entities:node'
pattern: '[node:title]' pattern: '[node:title]'
selection_criteria: selection_criteria:
e3e7a232-e1e0-455e-8b69-c99b582dc4f0: e3e7a232-e1e0-455e-8b69-c99b582dc4f0:
id: node_type id: 'entity_bundle:node'
negate: false negate: false
uuid: e3e7a232-e1e0-455e-8b69-c99b582dc4f0 uuid: e3e7a232-e1e0-455e-8b69-c99b582dc4f0
context_mapping: context_mapping:

View file

@ -12,7 +12,7 @@ type: 'canonical_entities:node'
pattern: '[node:title]' pattern: '[node:title]'
selection_criteria: selection_criteria:
2e17ea21-8c33-444d-981e-2a2df6651647: 2e17ea21-8c33-444d-981e-2a2df6651647:
id: node_type id: 'entity_bundle:node'
negate: false negate: false
uuid: 2e17ea21-8c33-444d-981e-2a2df6651647 uuid: 2e17ea21-8c33-444d-981e-2a2df6651647
context_mapping: context_mapping:

View file

@ -12,7 +12,7 @@ type: 'canonical_entities:node'
pattern: 'people/[node:title]' pattern: 'people/[node:title]'
selection_criteria: selection_criteria:
c9467269-b644-451e-b21f-01808d094c28: c9467269-b644-451e-b21f-01808d094c28:
id: node_type id: 'entity_bundle:node'
negate: false negate: false
uuid: c9467269-b644-451e-b21f-01808d094c28 uuid: c9467269-b644-451e-b21f-01808d094c28
context_mapping: context_mapping:

View file

@ -19,3 +19,4 @@ backend_config:
suggest_words: true suggest_words: true
database_text: '' database_text: ''
partial_matches: false partial_matches: false
phrase: disabled

View file

@ -1,3 +1,4 @@
_core: _core:
default_config_hash: VSBsC1hsGPM2gNULMlhwxRDW_cJD6BVggQ8f9d9fZUk default_config_hash: VSBsC1hsGPM2gNULMlhwxRDW_cJD6BVggQ8f9d9fZUk
depth: 2 depth: 2
redirect_support: false

View file

@ -149,7 +149,7 @@ display:
'entity:node': 'entity:node':
article: card article: card
query: query:
type: views_query type: search_api_query
options: options:
bypass_access: false bypass_access: false
skip_access: false skip_access: false

View file

@ -149,7 +149,7 @@ display:
'entity:node': 'entity:node':
blog: card blog: card
query: query:
type: views_query type: search_api_query
options: options:
bypass_access: false bypass_access: false
skip_access: false skip_access: false

View file

@ -182,7 +182,7 @@ display:
'entity:node': 'entity:node':
collection: card collection: card
query: query:
type: views_query type: search_api_query
options: options:
bypass_access: false bypass_access: false
skip_access: false skip_access: false

View file

@ -255,7 +255,7 @@ display:
'entity:node': 'entity:node':
people: small_card people: small_card
query: query:
type: views_query type: search_api_query
options: options:
bypass_access: false bypass_access: false
skip_access: false skip_access: false

View file

@ -247,7 +247,7 @@ display:
type: basic type: basic
options: options:
submit_button: Filter submit_button: Filter
reset_button: false reset_button: true
reset_button_label: Reset reset_button_label: Reset
exposed_sorts_label: 'Sort by' exposed_sorts_label: 'Sort by'
expose_sort_order: true expose_sort_order: true

View file

@ -209,7 +209,7 @@ display:
page: teaser page: teaser
people: teaser people: teaser
query: query:
type: views_query type: search_api_query
options: options:
bypass_access: false bypass_access: false
skip_access: false skip_access: false