Skip to content
Snippets Groups Projects
Commit 57f3ff2c authored by Tiago's avatar Tiago
Browse files

Enable social_pwa submodule activity_send_push

This was preciously required as a dependency, but this caused a circular reference, we moved this to our hook_install
parent f9d4047d
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,15 @@ function social_pwa_install() {
'private' => $generated_keys['privateKey'],
]);
}
// The activity_send_push module is actually a dependency but
// adding it to .info.yml creates an issue in the composer metadata
// generated by Drupal.org, so we must enable the module manually on
// install.
// See https://www.drupal.org/project/social_pwa/issues/3392949.
\Drupal::service('module_installer')->install([
'activity_send_push',
]);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment