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

Automatic update #520

Merged
merged 1 commit into from
Oct 19, 2023
Merged
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
1 change: 1 addition & 0 deletions .platform/schema
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2
205 changes: 138 additions & 67 deletions composer.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions conf/cmi/core.entity_form_display.tpr_unit.tpr_unit.default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ content:
third_party_settings: { }
contacts:
type: readonly_field_widget
region: content
weight: 36
region: content
settings:
label: above
formatter_type: null
Expand Down Expand Up @@ -176,8 +176,8 @@ content:
third_party_settings: { }
highlights:
type: readonly_field_widget
region: content
weight: 33
region: content
settings:
label: above
formatter_type: null
Expand All @@ -203,8 +203,8 @@ content:
third_party_settings: { }
links:
type: readonly_field_widget
region: content
weight: 31
region: content
settings:
label: above
formatter_type: null
Expand Down Expand Up @@ -241,8 +241,8 @@ content:
third_party_settings: { }
opening_hours:
type: readonly_field_widget
region: content
weight: 32
region: content
settings:
label: above
formatter_type: null
Expand All @@ -251,8 +251,8 @@ content:
third_party_settings: { }
other_info:
type: readonly_field_widget
region: content
weight: 34
region: content
settings:
label: above
formatter_type: null
Expand Down Expand Up @@ -294,8 +294,8 @@ content:
third_party_settings: { }
price_info:
type: readonly_field_widget
region: content
weight: 35
region: content
settings:
label: above
formatter_type: null
Expand Down Expand Up @@ -356,8 +356,8 @@ content:
third_party_settings: { }
topical:
type: readonly_field_widget
region: content
weight: 31
region: content
settings:
label: above
formatter_type: null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ id: helfi_announcements
label: 'Helfi: Announcements'
label_plural: 'Helfi: Announcements'
description: ''
generate_aliases: null
read_only: true
generate_aliases: null
field_mapper_id: jsonpath
field_mapper_config:
field_mappings:
Expand Down
1 change: 1 addition & 0 deletions conf/cmi/views.view.editoria11y_dismissals.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
uuid: f94e4fc7-77b1-4524-aa58-ec4c2de13863
langcode: en
status: true
dependencies:
Expand Down
1 change: 1 addition & 0 deletions conf/cmi/views.view.editoria11y_results.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
uuid: d77eb62e-e4a8-4dbb-bd44-0411494e598f
langcode: en
status: true
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion conf/cmi/views.view.service_list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -360,13 +360,13 @@ display:
display_plugin: block
position: 1
display_options:
display_extenders: { }
pager:
type: none
options:
offset: 0
defaults:
pager: false
display_extenders: { }
cache_metadata:
max-age: -1
contexts:
Expand Down
4 changes: 3 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ services:
# Optionally, you can add this to your default environments variables to enable or disable
# xdebug by default (like /etc/environments, ~/.bashrc, or ~/.zshrc).
XDEBUG_ENABLE: "${XDEBUG_ENABLE:-false}"
XDEBUG_CONFIG: "${XDEBUG_CONFIG:-}"
PHP_IDE_CONFIG: "${PHP_IDE_CONFIG:-serverName=${DRUPAL_HOSTNAME}}"
# DOCKERHOST: host.docker.internal
# Use drush server to run functional tests, so we don't have to care about
# permission or SSL issues.
Expand Down Expand Up @@ -121,7 +123,7 @@ services:
container_name: "${COMPOSE_PROJECT_NAME}-artemis"
image: quay.io/artemiscloud/activemq-artemis-broker
environment:
AMQ_EXTRA_ARGS: "--nio --user admin --password admin"
AMQ_EXTRA_ARGS: "--user admin --password admin"
depends_on:
- app
networks:
Expand Down
5 changes: 5 additions & 0 deletions tools/make/project/install.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ endif
DRUPAL_POST_INSTALL_TARGETS := drush-deploy drush-locale-update drush-uli

OC_LOGIN_TOKEN ?= $(shell bash -c 'read -s -p "You must obtain an API token by visiting https://oauth-openshift.apps.arodevtest.hel.fi/oauth/token/request (Token):" token; echo $$token')

SYNC_TARGETS := drush-sync-db

ifneq ($(DUMP_SQL_EXISTS),yes)
SYNC_TARGETS := oc-login oc-sync
endif

PHONY += oc-login
oc-login:
Expand Down