Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,3 @@ dependencies:
- helfi_react_search:helfi_react_search
- helfi_user_roles:helfi_user_roles
- publication_date:publication_date
- stomp:stomp
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,6 @@ function helfi_platform_config_base_update_9001() : void {
]);
}

/**
* Enable STOMP module.
*/
function helfi_platform_config_base_update_9002() : void {
$module_installer = Drupal::service('module_installer');
$module_installer->install(['stomp']);
}

/**
* UHF-9511 Uninstall content_liftup paragraph.
*/
Expand Down Expand Up @@ -204,3 +196,12 @@ function helfi_platform_config_base_update_9007() : void {
->update($module);
}
}

/**
* Disable STOMP module.
*/
function helfi_platform_config_base_update_9008() : void {
/** @var \Drupal\Core\Extension\ModuleInstallerInterface $module_installer */
$module_installer = Drupal::service('module_installer');
$module_installer->uninstall(['stomp']);
}