-
Notifications
You must be signed in to change notification settings - Fork 39
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
fix: Email Confirmation-Link When An Invite-Code Is Given #4336
Conversation
I understand that this is optional, but didn't we agree that the invite code is not part of the EMail? @Mogge |
We have agreed that the invite code gets stored via |
… nonce and method is invite-code. Thanks @Tirokk
ec1bf3e
to
c80b3a2
Compare
webapp/pages/registration.vue
Outdated
) | ||
} else { | ||
if ( | ||
this.method === 'invite-mail' || | ||
(this.method === 'invite-code' && this.inviteRegistration) | ||
) { | ||
return this.method | ||
if (this.method === 'invite-code' && this.inviteCode && this.nonce && this.email) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem here is that this.inviteCode
, this.nonce
, and this.email
just do not exist, because they are only local variables in data
.
We just have overlooked this. 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’ve done an additional commit …
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But how did it work then when we tried it? @Tirokk
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks all good to me, can we proceed?
We can proceed. Shall I do a new Version or shall the version 1.0.2 be removed? |
🍰 Pullrequest
When an invite code is passed to the email verification, the invite code is added to the action URL and the method is changed to invite-code
Issues