Skip to content
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
4 changes: 4 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
"drupal/ctools": {
"#2667652: Option to expose filters in block on views block display": "https://www.drupal.org/files/issues/ctools-option_to_expose-2667652-3.patch",
"#2866323 & #2865709: Fatal error on empty entity reference relationship": "https://www.drupal.org/files/issues/2866323-fix_entity_relationship_with_no_value.patch"
},
"drupal/profile": {
"#2887274: template_preprocess_profile() causes exception for unsaved profiles": "https://www.drupal.org/files/issues/2887274-2-fix_url_exception_on_unsaved_profiles.patch",
"#2887299: Profile roles access not checking the owner": "https://www.drupal.org/files/issues/2887299-fix_owner_role_access-assume_owner_access.patch"
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions config/install/contacts.contact_tab.crm_indiv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ relationships:
id: 'typed_data_entity_relationship:entity:user:profile_crm_indiv'
name: profile_crm_indiv
source: user
roles:
crm_indiv: crm_indiv
blocks:
contacts_entity_profile_crm_indiv:
id: 'contacts_entity:profile-crm_indiv'
Expand Down
1 change: 1 addition & 0 deletions config/install/contacts.contact_tab.crm_notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ relationships:
id: 'typed_data_entity_relationship:entity:user:profile_crm_notes'
name: profile_crm_notes
source: user
roles: { }
blocks:
contacts_entity_profile_crm_notes:
id: 'contacts_entity:profile-crm_notes'
Expand Down
2 changes: 2 additions & 0 deletions config/install/contacts.contact_tab.crm_org.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ relationships:
id: 'typed_data_entity_relationship:entity:user:profile_crm_org'
name: profile_crm_org
source: user
roles:
crm_org: crm_org
blocks:
contacts_entity_profile_crm_org:
id: 'contacts_entity:profile-crm_org'
Expand Down
1 change: 1 addition & 0 deletions config/install/contacts.contact_tab.summary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ relationships:
id: 'typed_data_entity_relationship:entity:user:profile_crm_notes'
name: profile_crm_notes
source: user
roles: { }
blocks:
contacts_entity_profile_crm_indiv:
id: 'contacts_entity:profile-crm_indiv'
Expand Down
6 changes: 6 additions & 0 deletions config/schema/contact_tab.schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ contacts.contact_tab.*:
sequence:
type: contacts.relationship.[%name]
label: 'Relationship'
roles:
type: sequence
label: 'Roles'
sequence:
type: string
label: 'Role'
blocks:
type: sequence
label: 'Blocks'
Expand Down
Loading