Skip to content

Commit

Permalink
Do not read user password from DB closes jhipster#232
Browse files Browse the repository at this point in the history
  • Loading branch information
glutengo committed May 31, 2021
1 parent 419c374 commit 8d62b07
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ export class User extends BaseEntity {
algorithm: 'aes-256-cbc',
ivLength: 16,
iv: config.get('crypto.iv')
})
}),
select: false
})
password: string;
@Column({ nullable: true })
Expand Down

0 comments on commit 8d62b07

Please sign in to comment.