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

Closes #3857: Update config schema files that have id fields that are strings to use the machine_name type #3916

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ az_event_trellis.az_recurring_import_rule.*:
label: Trellis Event Import
mapping:
id:
type: string
type: machine_name
label: ID
label:
type: label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ az_finder.tid_widget.[view_id].[display_id]:
type: mapping
mapping:
vocabulary_id:
type: string
type: machine_name
BaoNguyen09 marked this conversation as resolved.
Show resolved Hide resolved
# Vocabulary machine names are specifically limited to 32 characters.
# @see \Drupal\taxonomy\VocabularyForm::form()
constraints:
Length:
max: 32
label: 'Vocabulary ID'
terms:
type: sequence
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ az_publication.az_citation_style.*:
label: 'Quickstart Citation Style config'
mapping:
id:
type: string
type: machine_name
label: 'ID'
label:
type: label
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ az_publication.type.*:
label: 'Quickstart Publication Type config'
mapping:
id:
type: string
type: machine_name
label: 'ID'
label:
type: label
Expand Down
Loading