From 57922daea9e9b0cd2c2b0254b1a3fd00094bf5a0 Mon Sep 17 00:00:00 2001 From: ogerly Date: Thu, 6 Jan 2022 16:05:50 +0100 Subject: [PATCH 1/5] change creationdatas if change pending creation --- admin/src/components/UserTable.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/admin/src/components/UserTable.vue b/admin/src/components/UserTable.vue index 3f5393412..fecd39e67 100644 --- a/admin/src/components/UserTable.vue +++ b/admin/src/components/UserTable.vue @@ -232,6 +232,9 @@ export default { row.toggleDetails() this.slotIndex = index this.openRow = row + if (this.type === 'PageCreationConfirm') { + this.creationUserData = row.item + } } } else { row.toggleDetails() From a9d92d1c038b34f479ece40c5c38c4adfd2a045a Mon Sep 17 00:00:00 2001 From: ogerly Date: Fri, 7 Jan 2022 10:22:11 +0100 Subject: [PATCH 2/5] e-mail verification during registration, form only appears if register email is not confirmed --- .../src/components/ConfirmRegisterMailFormular.vue | 13 ++++++++++--- admin/src/components/UserTable.vue | 1 + 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/admin/src/components/ConfirmRegisterMailFormular.vue b/admin/src/components/ConfirmRegisterMailFormular.vue index 5052a8a3e..f69f887e0 100644 --- a/admin/src/components/ConfirmRegisterMailFormular.vue +++ b/admin/src/components/ConfirmRegisterMailFormular.vue @@ -1,10 +1,13 @@ @@ -23,6 +27,9 @@ import { sendActivationEmail } from '../graphql/sendActivationEmail' export default { name: 'ConfirmRegisterMail', props: { + checked: { + type: String, + }, email: { type: String, }, diff --git a/admin/src/components/UserTable.vue b/admin/src/components/UserTable.vue index 3f5393412..35803337d 100644 --- a/admin/src/components/UserTable.vue +++ b/admin/src/components/UserTable.vue @@ -107,6 +107,7 @@