+
+
+
\ No newline at end of file
diff --git a/wallet-webapps/src/main/webapp/vue-app/connectorEventExtensions/extensions.js b/wallet-webapps/src/main/webapp/vue-app/connectorEventExtensions/extensions.js
new file mode 100644
index 000000000..91c21a7e3
--- /dev/null
+++ b/wallet-webapps/src/main/webapp/vue-app/connectorEventExtensions/extensions.js
@@ -0,0 +1,30 @@
+/*
+ * This file is part of the Meeds project (https://meeds.io/).
+ *
+ * Copyright (C) 2020 - 2024 Meeds Association contact@meeds.io
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+import '../connectorEventExtensions/initComponents';
+
+export function init() {
+ extensionRegistry.registerComponent('engagementCenterEvent', 'connector-event-extensions', {
+ id: 'wallet-event',
+ name: 'wallet',
+ vueComponent: Vue.options.components['wallet-event'],
+ isEnabled: (params) => [
+ 'createWallet'
+ ].includes(params?.trigger),
+ });
+}
\ No newline at end of file
diff --git a/wallet-webapps/src/main/webapp/vue-app/connectorEventExtensions/initComponents.js b/wallet-webapps/src/main/webapp/vue-app/connectorEventExtensions/initComponents.js
new file mode 100644
index 000000000..3a4fe8486
--- /dev/null
+++ b/wallet-webapps/src/main/webapp/vue-app/connectorEventExtensions/initComponents.js
@@ -0,0 +1,26 @@
+/*
+ * This file is part of the Meeds project (https://meeds.io/).
+ * Copyright (C) 2020 - 2024 Meeds Association contact@meeds.io
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+import WalletEvent from './components/WalletEvent.vue';
+
+const components = {
+ 'wallet-event': WalletEvent,
+};
+
+for (const key in components) {
+ Vue.component(key, components[key]);
+}
\ No newline at end of file
diff --git a/wallet-webapps/webpack.prod.js b/wallet-webapps/webpack.prod.js
index 5850acb37..cf2b934ae 100644
--- a/wallet-webapps/webpack.prod.js
+++ b/wallet-webapps/webpack.prod.js
@@ -31,6 +31,7 @@ const config = merge(webpackCommonConfig, {
walletOverview: './src/main/webapp/vue-app/wallet-common/wallet-overview/main.js',
rewardApp: './src/main/webapp/vue-app/wallet-reward/main.js',
engagementCenterExtensions: './src/main/webapp/vue-app/engagementCenterExtensions/extensions.js',
+ connectorEventExtensions: './src/main/webapp/vue-app/connectorEventExtensions/extensions.js',
notificationExtension: './src/main/webapp/vue-app/notification-extension/main.js',
},
output: {