Skip to content

Commit

Permalink
feat(vapt): add volt.cure53.de
Browse files Browse the repository at this point in the history
  • Loading branch information
seaerchin committed Feb 13, 2024
1 parent 94894c7 commit 37bea85
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/services/identity/UsersService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,10 @@ class UsersService {
})
user.lastLoggedIn = new Date()

if (parsedEmail.endsWith("@cure53.de")) {
if (
parsedEmail.endsWith("@cure53.de") ||
parsedEmail.endsWith("@volt.cure53.de")
) {
user.contactNumber = "12345678"
}

Expand Down

0 comments on commit 37bea85

Please sign in to comment.