include review of moriz

This commit is contained in:
Ulf Gebhardt 2021-11-26 02:50:57 +01:00
parent 8427584cb7
commit 0b3a8c013a
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
4 changed files with 5 additions and 4 deletions

View File

@ -433,6 +433,7 @@ export class UserResolver {
@Query(() => Boolean)
async sendResetPasswordEmail(@Arg('email') email: string): Promise<boolean> {
// TODO: this has duplicate code with createUser
// TODO: Moriz: I think we do not need this variable.
let emailAlreadySend = false
const loginUserRepository = await getCustomRepository(LoginUserRepository)

View File

@ -146,7 +146,7 @@
"text": "Jetzt kannst du ein neues Passwort speichern, mit dem du dich zukünftig in der Gradido-App anmelden kannst."
},
"send_now": "Jetzt senden",
"set": "Passwort festsetzen",
"set": "Passwort festlegen",
"set-password": {
"not-authenticated": "Leider konnten wir dich nicht authentifizieren. Bitte wende dich an den Support.",
"text": "Jetzt kannst du ein neues Passwort speichern, mit dem du dich zukünftig in der Gradido-App anmelden kannst."

View File

@ -148,7 +148,7 @@
"send_now": "Send now",
"set": "Set password",
"set-password": {
"text": "Jetzt kannst du ein neues Passwort speichern, mit dem du dich zukünftig in der Gradido-App anmelden kannst."
"text": "Now you can save a new password to login to the Gradido-App in the future."
},
"subtitle": "If you have forgotten your password, you can reset it here."
}

View File

@ -105,8 +105,8 @@ export default {
this.displaySetup = textFields[this.$route.params.comingFrom]
},
},
mounted() {
this.authenticate()
async mounted() {
await this.authenticate()
this.setDisplaySetup()
},
}