stages/email: use different query arguments for email and invitation tokens

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-09-20 19:55:53 +02:00
parent 180d27cc37
commit 4c29d517f0
4 changed files with 11 additions and 6 deletions

View File

@ -23,7 +23,7 @@ export class InvitationListLink extends LitElement {
}
renderLink(): string {
return `${window.location.protocol}//${window.location.host}/if/flow/${this.selectedFlow}/?token=${this.invitation}`;
return `${window.location.protocol}//${window.location.host}/if/flow/${this.selectedFlow}/?itoken=${this.invitation}`;
}
render(): TemplateResult {